Objectif : Exploration de données
Source des données : Baromètre de la Science Ouverte - données complètes
Date début de l’analyse : 28 février 2022
Date de la dernière modification : 09 mai 2022
Étant donné la taille (8 fichiers de plus d’1 GB en moyenne) et le format (JSON Lines) des données, il a fallu dans un premier temps les traiter pour les remettre dans un format tabulaire exploitable, les nettoyer puis les transformer avant d’en commencer l’exploration.
Les étapes suivantes ont été suivies :
Les scripts dans lesquels se trouvent les commandes exécutées pour ces différentes tâches sont les suivants :
Check de la redondance de certaines colonnes (par rapport aux intuitions et aux noms de certaines variables) :
Check des informations contenues dans les 4 colonnes de date :
Après extraction des années (‘YYYY’) dans les colonnes ‘publication_date’ et ‘published_date’, puis comparaison avec les colonnes existantes ‘publication_year’ et ‘Year’, il résulte que :
Check de la constance de la variable ‘is_oa’ contenue dans l’objet ‘oa_details’, pour laquelle il y a une valeur sur 4 périodes différentes : 2018, 2019, 2020 et 2021Q4.
On compare les valeurs de tous les articles de la base pour ces 4 dates (via la fonction identical(col1, col2)) :
La quatrième étape est consacrée à la gestion des données de manière générale, avec 3 actions différentes : suppression, création de variables, filtres sur les observations. Le tableau suivant résume les actions réalisées sur les variables de chaque objet :
| Objet | Variables écartées | Nombre de suppressions | Variables créées | Filtres appliqués |
|---|---|---|---|---|
| Variables non imbriquées | datasource, domains, grants, has_grant, id, is_paratext, journal_title, mesh_headings, pmid, publication_date, publication_year, published_date, publisher, publisher, sources, title_first_author, title_first_author_raw, url, currency_apc_doaj, journal_or_publisher_in_bealls_list, publisher_normalized, genre_raw, french_affiliations_types, author_useful_rank_fr, author_useful_rank_countries, observation_dates, has_coi, amount_apc_openapc_EUR, count_apc_openapc_EUR, bso_local_affiliations, keywords | 31 | tier, journal_color, journal_color_doaj, journal_color_qoam, is_covered_by_couperin, part_APC_paid_by_couperin, part_APC_paid_by_authors | seuls les publications du genre “journal-article” sont gardés |
| Authors | external_ids…5, grid, first_name, full_name, last_name, external_ids…15, affiliation, orcid, adress.line, city, postal.code, url, social.media, suffix, ORCID, authenticate.orcid, sequence | 17 | is_french_CA, is_french_CA_wos, is_non_french_CA_wos, is_french_CA_openalex, is_at_least_one_french_author, is_complete_affiliation, nb_missing_affiliation, nb_authors | pour les publications de plus de 10 auteurs, seuls les 5 premières et 5 dernières affiliations sont gardées, ainsi que celle de l’auteur correspondant (CA) |
| Affiliations | toutes | 8 | ||
| Bsso_classification | toutes | 4 | ||
| Oa_details | oa_details.2020.snapshot_date, oa_details.2020.licence_repositories, oa_details.2020.repositories, oa_details.2020.repositories_url, oa_details.2020.repositories_pmh, oa_details.2020.repositories_institution, oa_details.2020.oa_locations et toutes les autres variables des périodes 2018, 2019 et 2021Q4. | 52 | oa_color_article_BSO, oa_color_openalex, apc_has_been_paid |
Sur les 15 variables créées parmi les 5 sous-objets extraits du BSO, 8 ont été crées à partir des données disponibles dans la base initiale, et 7 ont été crées en recoupant avec des données externes. Nous expliquons dans un premier temps les étapes de construction des 5 variables transformées depuis les données du BSO, puis nous reviendrons sur les 2 variables créées à partir de données externes.
La variable ‘tier’ correspond à la classe de l’éditeur. Nous avons défini 4 classes à partir des données de l’année 2020, en classant les 20 plus gros éditeurs, c’est-à-dire ceux qui ont édité le plus de publications de type ‘journal-article’. Les classes créées pour les 8 années (2013-2020) sont les suivantes :
La répartition des articles entre ces classes pour l’année 2020 (année de référence) est la suivante :
| tier | nombre d’articles | pourcentage |
|---|---|---|
| 1 | 39 521 | 27,91% |
| 2 | 35 736 | 25,24% |
| 3 | 40 313 | 28,48% |
| 4 | 26 011 | 18,37% |
La variable ‘is_french_CA’ correspond à la nationalité de l’auteur correspondant, elle prend la valeur 1 si l’auteur correspondant est français, 0 sinon. Sa création est faite à partir des variables du BSO ‘detected_countries’ et ‘name’, elles listent respectivement la nationalité de chaque auteur d’une publication et le nom de son affiliation - dans lequel est précisé le pays.
Ce premier champ ‘detected_countries’ est présent à 2 niveaux ; un premier niveau non imbriqué où 1 entrée correspond à 1 publication (seules les valeurs uniques sont listées dans ce champ), et un second niveau initialement imbriqué (celui des auteurs) où 1 entrée correspond à 1 auteur d’une publication, pour qui on retrouve la nationalité. C’est notamment à partir de ce second niveau que la variable ‘is_french_CA’ a été créée, car il liste toutes les affiliations connues pour une publication (pas seulement les valeurs uniques) et est accompagné du champ ‘corresponding’ qui prend la valeur ‘TRUE’ lorsque l’auteur est l’auteur correspondant. Dans cette variable ‘detected_countries’, lorsqu’un auteur a plusieurs affiliations, les pays de ces dernières sont listés dans la variable (ex: c("us","fr")).
Le second champ ‘name’ est une compilation des colonnes du même nom, que l’on retrouvait dans l’objet des auteurs, imbriquées soit derrière le champ ‘affiliations’, soit derrière le champ ‘affiliation’ (sans ‘s’).
Après avoir groupé les données par DOI, la règle de décision suivante a été appliquée :
(corresponding == 'TRUE' & ((grepl("fr", detected_countries) == TRUE) | grepl("France", name) == TRUE)) | all(grepl("fr", detected_countries) == TRUE) | all(grepl("France", name) == TRUE)), alors la variable prend la valeur 1 ;La variable ‘is_at_least_one_french_author’ informe si au moins un auteur de la publication est français, elle prend la valeur 1 si c’est le cas, 0 sinon.
De la même manière que pour la variable ‘is_french_CA’, la création de cette nouvelle variable est basée sur les colonnes du BSO ‘detected_countries’ et ‘name’, au niveau des auteurs, puis elle est enrichie par une deuxième passe sur la variable ‘detected_countries’ au niveau des articles (qui liste tous les pays uniques d’une publication). Après avoir groupé les données par DOI, la règle de décision suivante a été appliquée :
any(grepl("fr", detected_countries) == TRUE) | any(grepl("France", name) == TRUE)), alors la variable prend la valeur 1 ;La variable ‘is_complete_affiliation’ informe si l’affiliation de tous les auteurs d’une publication est connue, elle prend la valeur 1 si c’est le cas, 0 sinon. Après avoir groupé les données par DOI, la règle de décision suivante a été appliquée :
La variable ‘nb_missing_affiliation’ compte le nombre d’auteurs pour lesquels l’affiliation n’est pas connue. De pair avec la variable ‘nb_authors’ (expliquée ci-dessous), elle permet de savoir le nombre d’affiliations manquantes par rapport au nombre d’auteurs pour une publication (à utiliser éventuellement plus tard pour appliquer une règle de décision).
La variable ‘nb_authors’ correspond au nombre d’auteurs par publication. À partir des données du BSO qui listent les auteurs par publication (1 ligne = 1 auteur), nous avons groupé les données par DOI puis compté le nombre d’observations par groupe.
Une précision
Les manipulations des variables ‘is_french_CA’, ‘is_at_least_one_french_author’, ‘is_complete_affiliation’, ‘nb_missing_affiliation’ et ‘nb_authors’ réalisées à partir de l’objet des auteurs, ont été appliquées avant de filtrer les observations en ne gardant que les 5 premières et 5 dernières affiliations d’auteurs, de manière à ne pas biaiser les variables créées.
La variable ‘oa_color_article_BSO’ correspond au statut libre accès du journal dans lequel sont publiés les articles. Il s’agit de la variable contenue dans les données originales du BSO ‘oa_details.2020.oa_colors_with_priority_to_publisher’, qui a été simplement modifiée pour regrouper certaines catégories. Les couleurs ‘green_only’, ‘closed’ et ‘other’ ont ainsi été regroupées sous la catégorie ‘subscription’.
La variable ‘journal_color’ correspond aussi au statut libre accès du journal dans lequel sont publiés les articles. Mais contrairement à la variable précédente, celle-ci a été calculée à partir des données du BSO, avec les règles de décision suivantes :
apc_source == 'doaj') et que le montant est nul (pas d’APC payés), alors la variable prend la valeur diamond ;N’étant pas certains de la qualité de la variable créée, une seconde variable de couleur de journal a été construite à partir de données externes, nous expliquons les étapes de sa création ci-dessous.
La variable ‘journal_color_doaj’ correspond elle aussi au statut libre accès du journal, mais celle-ci a été construite directement à partir des données DOAJ. On trouve effectivement, sur leur plate-forme internet, des données listant tous les journaux du DOAJ, en précisant si des APC sont payés ou non. Ces dernières ont été récupérées au format JSON à la date du 19 mars, et ont permis de créer la variable ‘journal_color_doaj’ en plusieurs étapes :
à partir de la base extraite de leur plate-forme, ne garder que les variables d’ISSN (ISSN print et e-ISSN), la variable informant si des APC sont payés (has_apc), et en créer une qui prend toujours la valeur 1 pour informer que le journal est dans les données DOAJ (is_in_doaj) ;
joindre ces données avec la base du BSO par l’ISSN (tous les journaux du DOAJ ont un ISSN correspondant, donc il n’est pas utile de matcher par le nom de journal) ;
créer la nouvelle variable ‘journal_color_doaj’ avec la règle de décision suivante :
supprimer les variables intermédiaires qui servaient uniquement à la création de la variable ‘journal_color_doaj’ : is_in_doaj et has_apc.
La création de cette variable porte uniquement sur les couleurs ‘diamond’ et ‘gold’ puisque son objectif est de comparer la fiabilité des données ayant comme source APC ‘doaj’, c’est pour cela qu’aucune règle de décision n’est appliquée pour les couleurs ‘hybrid’ et ‘subscription’.
La variable ‘journal_color_qoam’ correspond elle aussi au statut libre accès du journal, mais celle-ci a été construite à partir des données QOAM transmises par L.Waayers à la date du 4 mai, qui listent 44.000 journaux issus de Journal TOCS - une autre base de données de journaux. Celles-ci ont permis de construire la variable ‘journal_color_qoam’ avec la règle de décision suivante :
La variable ‘is_covered_by_couperin’ est une variable booléenne qui prend la valeur 1 si le journal est couvert par les accords Couperin, 0 sinon. Celle-ci a été construite à partir de données Couperin transmises par V.Larroque, listant toutes les revues couvertes par le consortium. Les étapes ont été les suivantes :
import des données transmises (6 feuilles Excel au total), sélection des variables à garder (ISSNs et titre pour les journaux sans ISSN), création de la variable ‘is_covered_by_couperin’ qui prend toujours la valeur 1 et harmonisation des noms de colonnes qui diffèrent d’une feuille de classeur à une autre ;
regroupement des 6 bases en une seule, puis jointure avec les données du BSO en 3 temps :
Une précision
Dans les données du BSO, deux colonnes contiennent l’ISSN des journaux : l’une ne contient que l’ISSN préféré (toujours 1 valeur) et l’autre contient tous les ISSNs correspondant à un journal (ils sont alors listés à la suite et séparés par des virgules). Cette seconde variable étant plus exhaustive, c’est elle qui a servi de clé de jointure pour ajouter les données des journaux externes (DOAJ et Couperin). Pour cela il a d’abord fallu séparer les ISSNs sur plusieurs lignes lorsque plusieurs ISSNs sont disponibles pour un journal, en dupliquant les autres champs. Il a ensuite été possible de joindre les données externes, d’appliquer les règles de décision pour la création des variables, puis de remettre les ISSNs en une ligne en collant les différentes valeurs à la suite, séparées par des virgules.
De cette manière, un journal ayant 2 ISSNs peut être joint 2 fois avec les données externes, et peut donc contenir 2 fois sa couleur (ex: ‘gold,gold’). Un travail d’agrégation des valeurs a ainsi été fait, après avoir remis les données sur une ligne correspondant à un article (ex: ‘gold,gold’ est transformé en ‘gold’).
Les variables ‘part_APC_paid_by_couperin’ et ‘part_APC_paid_by_authors’ correspondent respectivement au pourcentage des APC payés par Couperin et ceux payés par les auteurs ou leurs institutions. Celles-ci ont été construites à partir de données Couperin transmises par V.Larroque, intitulés “EDP_données_2017-2020.xlsx” et “Elsevier_ArticlesOA_2019-2021.xlsx”. Les étapes ont été les suivantes :
import des données transmises (2 fichiers différents)
sélection des variables de DOI, de manière à ne garder qu’une liste des publications concernées par les montants négociés
création des variables ‘part_APC_paid_by_couperin’ et ‘part_APC_paid_by_authors’ qui prennent les mêmes valeurs pour tous les DOIs d’une base :
jointure avec les données du BSO par l’identifiant du DOI.
Les variables ‘is_french_CA_wos’ et ‘is_non_french_CA_wos’ sont des variables booléennes qui indiquent respectivement s’il y a un auteur correspondant français, et s’il y a un auteur correspondant étranger par article. Celles-ci ont été construites à partir de données du Web of Science transmises par D.Besagni, qui correspondent à une extraction d’un appel à API réalisé entre le 28 mars et le 15 avril 2022, listant tous les auteurs d’une publication, ainsi que leur(s) affiliation(s). Les données récupérées étaient au format XML et concernaient 1.242.560 DOIs/notices, répartis en 1243 sous-fichiers. Les étapes suivantes ont été suivies pour traiter les données :
import des fichiers sous python, premier traitement :
reprint='Y', i.e. auteur correspondant :
import de cette base créée sous R, second traitement :
any(country_eta == "France")), et “0” lorsque tous les auteurs correspondant ne sont pas français et qu’ils sont connus (country_eta != "unknown_by_WOS" & all(country_eta != "France"))country_eta != "unknown_by_WOS" & any(country_eta != "France")), et “0” lorsque tous les auteurs correspondant sont français (all(country_eta == "France"))3 combinaisons des variables créées sont ainsi possibles :
La variable ‘is_french_CA_openalex’ est une variable booléenne qui indique aussi si l’auteur correspondant est français. Celle-ci a été construite à partir des données OpenAlex au niveau des articles (“Works”), récupérées par appels d’API. Les étapes suivantes ont été suivies pour construire cette variable :
création d’un objet contenant tous les DOIs du BSO n’ayant pas d’informations sur la nationalité de l’auteur correspondant, et n’étant pas écrits en français (cela concerne 126.772 articles) ;
requêtes de l’API OpenAlex pour récupérer les données des 126.772 articles du BSO mis de côté ;
parmi les données récupérées depuis OpenAlex, sélection des variables listant tous les auteurs d’une publication ainsi que leur pays d’affiliation ;
création de la variable ‘is_french_CA_openalex’ avec la règle de décision suivante, après avoir groupé les données par DOI :
jointure avec les données du BSO par la variable du DOI.
La variable ‘is_french_CA_bso_wos_lang_openalex’ est la variable booléenne finale, qui indique si l’auteur correspondant est français. Elle est la combinaison des variables ‘is_french_CA’, ‘is_french_CA_wos’, ‘lang’ et ‘is_french_CA_openalex’. Pour chaque étape correspondant à une source de données différente, des variables intermédiaires ont été créées, telles que :
lang == "fr"), et “0” comme la variable ‘is_french_CA_bso_wos’.La variable finale ‘is_french_CA_bso_wos_lang_openalex’ (‘is_french_CA_bso_wos’ enrichie des données OpenAlex) suit donc la règle de décision suivante :
‘is_french_CA_bso_wos_lang_openalex’ prend la valeur “1” dans les cas de figure suivants :
‘is_french_CA_bso_wos_lang_openalex’ prend la valeur “0” dans les cas de figure suivants :
La variable ‘apc_has_been_paid’ est une variable booléenne qui indique si un APC a été payé pour l’article concerné. Celle-ci a aussi été construite à partir des données OpenAlex au niveau des articles (“Works”), récupérées par appels d’API. Les étapes suivantes ont été suivies pour construire cette variable :
création d’un objet contenant tous les DOIs du BSO ayant théoriquement un APC payé (has_apc == 1) (cela concerne 278.507 articles) ;
requêtes de l’API OpenAlex pour récupérer les données des 278.507 articles du BSO mis de côté ;
parmi les données récupérées depuis OpenAlex, sélection de la variable indiquant le statut Open Access de l’article (oa_status) ;
création de la variable ‘apc_has_been_paid’ avec la règle de décision suivante :
oa_color_openalex == "gold" | oa_color_openalex == "hybrid"), et “0” dans les autres cas, c’est-à-dire où le statut OA est “bronze”, “closed” ou “green”.jointure avec les données du BSO par la variable du DOI.
La variable récupérée via l’API “oa_color_openalex”, est elle aussi jointe pour enrichir les données du BSO.
# Libraries
packages = c("tidyverse", "jsonlite", "kableExtra", "DT", "knitr", "glue", "plotly", "hrbrthemes", "viridis")
## Installation des packages si besoin et chargement des librairies
package.check <- lapply(
packages,
FUN = function(x) {
if (!require(x, character.only = TRUE)) {
install.packages(x, dependencies = TRUE)
library(x, character.only = TRUE)
}
}
)
### Fonction d'import et afficher les 100 premières observations
import_manips <- function(year){
# Import des données
start_time <- Sys.time()
data <- read_csv(glue("../data/4.process/managing-variables_2nd-part/final_bso_{year}.csv"), col_types = cols(author_position = "c"), na = c("", "NA"))
end_time <- Sys.time()
# as.factor
data[,c("has_apc", "tier", "is_covered_by_couperin", "is_complete_affiliation", "is_french_CA", "is_at_least_one_french_author2", "part_APC_paid_by_couperin", "part_APC_paid_by_authors")] <- sapply(data[,c("has_apc", "tier", "is_covered_by_couperin", "is_complete_affiliation", "is_french_CA", "is_at_least_one_french_author2", "part_APC_paid_by_couperin", "part_APC_paid_by_authors")], as.factor)
# Configuration du temps d'exécution de la commande
import_time <- end_time - start_time
import_time <- paste(round(as.numeric(import_time, units.difftime(import_time)),2), units.difftime(import_time))
# Sauvegarde des objets dans environnement
assign(glue("bso_{year}"), data, envir = .GlobalEnv)
assign("data", data, envir = .GlobalEnv)
assign("import_time", import_time, envir = .GlobalEnv)
}
n_100_kable <- function(data){
kable(data[c(1:100),], format = "html") %>%
kable_styling(bootstrap_options = c("striped", "hover"),
full_width = T,
font_size = 9,
fixed_thead = TRUE, #fix headers when scrolling
html_font = "sans-serif") %>%
scroll_box(width = "100%", height = "600px")
}
import_manips(2013)
Temps d’exécution de l’import des données : 1.84 secs.
Dimensions du jeu de données : 117399 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/2013.jamainternmed.857 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Racial Differences in the Impact of Elevated Systolic Blood Pressure on Stroke Risk | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 10 | 0 | 10 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/2013.jamapsychiatry.55 | 2013 | Medical research | NA | NA | 2168-622X | 2168-622X | JAMA Psychiatry | en | Prevalence, Correlates, and Treatment of Lifetime Suicidal Behavior Among Adolescents | 1 | 4754.419 | openAPC_estimation_issn | NA | NA | 4754.419 | 15 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 7 | 0 | 7 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/2013.jamasurg.33 | 2013 | Medical research | NA | NA | 2168-6254 | 2168-6254 | JAMA Surgery | en | Systematic Review of the Technique of Colorectal Anastomosis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 5 | 0 | 5 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/2013.jamasurg.38 | 2013 | Medical research | NA | fr | 2168-6254 | 2168-6254 | JAMA Surgery | en | Partial Recovery of Peristalsis After Myotomy for Achalasia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Digestive Physiology, Edouard Herriot Hospital, Pavillon H, 5 place d’Arsonval, 69437 Lyon, CEDEX 03, France. roman.sabine@gmail.com | 123456789 | NA | NA | 9 | 0 | 8 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2012.196377 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Not Monitoring Residual Gastric Volume on Risk of Ventilator-Associated Pneumonia in Adults Receiving Mechanical Ventilation and Early Enteral Feeding | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Medical-Surgical Intensive Care Unit, District Hospital Center, La Roche-sur-Yon, France. jean.reignier@chd-vendee.fr | 1234589101112 | NA | NA | 12 | 0 | 11 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2012.88570 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | SPECT/CT for Sentinel Lymph Node Detection in Patients With Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 2 | 0 | 2 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.107828 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Selective Serotonin Reuptake Inhibitors for Stroke Recovery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.1337 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Venous Thrombosis Related to Air Travel | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2013.2194 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Eritoran, an Antagonist of MD2-TLR4, on Mortality in Patients With Severe Sepsis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 30 | 0 | 30 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.276300 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Prednisolone With vs Without Pentoxifylline and Survival of Patients With Severe Alcoholic Hepatitis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service des Maladies de l’Appareil digestif, Hôpital Huriez, Lille, France. philippe.mathurin@chru-lille.fr | 123451819202122 | NA | NA | 22 | 0 | 21 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.277165 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Anticoagulation With Otamixaban and Ischemic Events in Non–ST-Segment Elevation Acute Coronary Syndromes | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Paris-Diderot, Sorbonne-Paris Cité, Paris, France. gabriel.steg@bch.aphp.fr | 123453233343536 | NA | NA | 36 | 0 | 35 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.277169 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Aliskiren on Progression of Coronary Disease in Patients With Prehypertension | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 16 | 0 | 16 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.277449 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Contaminated Methylprednisolone Injections | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.278040 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Menopausal Hormone Therapy and Health Outcomes During the Intervention and Extended Poststopping Phases of the Women’s Health Initiative Randomized Trials | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 33 | 0 | 33 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.278477 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Heart Rate Control With Esmolol on Hemodynamic and Clinical Outcomes in Patients With Septic Shock | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 17 | 0 | 17 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.280031 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Statin Therapy on Mortality in Patients With Ventilator-Associated Pneumonia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Assistance Publique-Hôpitaux de Marseille, Hôpital Nord, Réanimation des Détresses Respiratoires et des Infections Sévères UMR-CNRS 7278, Aix-Marseile Université, Marseille, France. | 123451819202122 | NA | NA | 22 | 0 | 21 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.280502 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effects of Fluid Resuscitation With Colloids vs Crystalloids on Mortality in Critically Ill Patients Presenting With Hypovolemic Shock | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Raymond Poincaré Hospital, Garches, France. | 123452122232425 | NA | NA | 25 | 0 | 24 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.280506 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Induced Hypothermia in Severe Bacterial Meningitis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Réanimation Médicale et Infectieuse, Assistance Publique-Hôpitaux de Paris, Groupe Hospitalier Bichat-Claude Bernard, Université Paris Diderot, Sorbonne Paris Cité, Paris, France. | 123453435363738 | NA | NA | 38 | 0 | 37 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.282043 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Outcomes Following Transcatheter Aortic Valve Replacement in the United States | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Heart Hospital Baylor Plano, Baylor Healthcare System, Plano, Texas”),list(name = “Duke Clinical Research Institute, Durham, North Carolina”),list(name = “University of California, San Francisco”),list(name = “University of Colorado, Denver”),list(name = “University of Florida, Jacksonville”),list(name = “American College of Cardiology, Washington, DC”),list(name = “Mayo Clinic, Rochester, Minnesota”) | NA | NA | NA | 17 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.282540 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Progenitor Cell Mobilization With Granulocyte-Macrophage Colony-Stimulating Factor in Patients With Peripheral Artery Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 25 | 0 | 25 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.5657 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Music Therapy for Reducing Anxiety in Critically Ill Patients | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.747 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association Between Childhood Migraine and History of Infantile Colic | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Pediatric Emergency Care, APHP-Hospital Robert Debré, Paris, France. | 123451112131415 | NA | NA | 15 | 0 | 14 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2013.7832 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Vasopressin, Steroids, and Epinephrine and Neurologically Favorable Survival After In-Hospital Cardiac Arrest | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 15 | 0 | 15 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.7939 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Smoking Cessation, Weight Change, and Risk of Cardiovascular Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.8643 | 2013 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association Between Early Surgical Intervention vs Watchful Waiting and Outcomes for Mitral Regurgitation Due to Flail Mitral Valve Leaflets | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 13 | 0 | 13 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2013.8711 | 2013 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Incidence of Sports-Related Sudden Death in France by Specific Sports and Sex | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Paris Descartes, Sorbonne Paris Cité, Paris, France. eloi_marijon@yahoo.fr | 12345 | NA | NA | 5 | 0 | 4 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.1434 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Prevalence and Clinical Significance of Anti–Laminin 332 Autoantibodies Detected by a Novel Enzyme-Linked Immunosorbent Assay in Mucous Membrane Pemphigoid | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Reims University Hospital, University of Reims-Champagne-Ardenne, Reims, France. pbernard@chu-reims.fr | 12345678 | NA | NA | 8 | 0 | 7 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.1989 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Secondary Hyperpigmentation During Interferon Alfa Treatment for Chronic Hepatitis C Virus Infection | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, INSERM U1065 Team 12, University Hospital of Nice, Nice, France. | 123456789 | NA | NA | 9 | 0 | 8 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.2018 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Saliva Polymerase Chain Reaction Assay for Detection and Follow-up of Herpesvirus Reactivation in Patients With Drug Reaction With Eosinophilia and Systemic Symptoms (DRESS) | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Bichat-Claude Bernard Hospital, Assistance Publique des Hôpitaux de Paris, 46 rue Henri Huchard, 75018 Paris, France. vincent.descamps@bch.aphp.fr | 12345678 | NA | NA | 8 | 0 | 7 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.2060 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | “Granulomatosis With Polyangiitis (Wegener’s)” for “Wegener Granulomatosis” | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Médecine Interne, Hôpital Tenon (AP-HP), 4 rue de la Chine, 75020 Paris, France. claude.bachmeyer@tnn.aphp.fr | 12 | NA | NA | 2 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.21 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Tracking of Second Primary Melanomas in Vemurafenib-Treated Patients | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 16 | 0 | 16 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.256 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Ustekinumab Therapy for Severe Interstitial Granulomatous Dermatitis With Arthritis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 5 | 0 | 5 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.2625 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | IgG4-Related Skin Disease Successfully Treated by Thalidomide | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Henri Mondor Hospital, 51 avenue du Marechal de Lattre de Tassigny, 94000 Creteil, France. saskia.oro@hmn.aphp.fr | 123456 | NA | NA | 6 | 0 | 5 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.4175 | 2013 | Biology (fond.) | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Saxophone Penis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 2 | 0 | 2 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2013.4200 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Vemurafenib and Radiosensitization | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Medical Oncology, Institut Gustave Roussy, Villejuif, France. | 123456789 | NA | NA | 9 | 0 | 8 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.4581 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Survival for Patients With Single and Multiple Primary Melanomas | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2013.5480 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Neutrophilic Urticaria With Systemic Inflammation Identical to Neutrophilic Urticarial Dermatosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jamadermatol.2013.5751 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Clinical Activity of Lenalidomide in Visceral Human Immunodeficiency Virus–Related Kaposi Sarcoma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Dermatologie, Hôpital Bichat, Assistance Publique-Hôpitaux de Paris, Paris, France2Université Paris Diderot Sorbonne Paris Cité, Paris, France. | 1234589101112 | NA | NA | 12 | 0 | 11 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.6683 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Dermatologic Findings in 16 Patients With Cockayne Syndrome and Cerebro-Oculo-Facial-Skeletal Syndrome | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service d’Anatomie et Cytologie Pathologiques, Centre Hospitalier Universitaire de Montpellier, Montpellier, France2Service d’Anatomie et Cytologie Pathologiques, Université de Montpellier, Montpellier, France3Service de Dermatologie, Hôpital Civil, Hôpitaux Universitaires de Strasbourg, Strasbourg, France4Faculté de Médecine, Université de Strasbourg, Strasbourg, France.,Faculté de Médecine, Université de Strasbourg, Strasbourg, France5Service de Pédiatrie 1, Hôpital de Hautepierre, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,Service de Pédiatrie 1, Hôpital de Hautepierre, Hôpitaux Universitaires de Strasbourg, Strasbourg, France6Service de Génétique Médicale, Hôpital de Hautepierre, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,Faculté de Médecine, Université de Strasbourg, Strasbourg, France6Service de Génétique Médicale, Hôpital de Hautepierre, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,Service de Dermatologie, Hôpital Civil, Hôpitaux Universitaires de Strasbourg, Strasbourg, France4Faculté de Médecine, Université de Strasbourg, Strasbourg, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.706 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Distinctive Features of Melanoma and Its Management in Elderly Patients | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Unité d’Aide Méthodologique, Hôpital Robert Debré, Reims, France. | 123451213141516 | NA | NA | 16 | 0 | 15 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.709 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Hydroxychloroquine-Induced Pigmentation in Patients With Systemic Lupus Erythematosus | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Médecine Interne, Centre de Référence National pour le Lupus Systémique et le Syndrome des Antiphospholipides, Université Paris 6, Assistance Publique-Hôpitaux de Paris (AP-HP), Paris, France. | 123451516171819 | NA | NA | 19 | 0 | 18 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.7329 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | IgG4-Related Skin Disease—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.7819 | 2013 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Tommaso Campailla and the Syphilis Museum in Sicily | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 2 | 0 | 2 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jamadermatol.2013.8198 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Identification of a Novel ComplexBRAFMutation Associated With Major Clinical Response to Vemurafenib in a Patient With Metastatic Melanoma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut Albert Bonniot INSERM/UJF U823, Grenoble, France.,Department of Neurosurgery, CHRU Grenoble University Hospital, Grenoble, France.,Department of Medical Imaging, CHRU Grenoble University Hospital, Grenoble, France.,Department of Dermatology, CHRU Grenoble University Hospital, Grenoble, France.,Department of Cancer Clinical Chemistry, CHRU Grenoble University Hospital, Grenoble, France. | 123456789 | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.938 | 2013 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Telaprevir-Related Dermatitis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermaology, Université Paris-Est, Créteil, France. | 123457891011 | NA | NA | 11 | 0 | 10 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamafacial.2013.326 | 2013 | Biology (fond.) | NA | fr | 2168-6076 | 2168-6076,2168-6092 | JAMA Facial Plastic Surgery | en | Cartilage Splitting Without Stitches | 0 | NA | NA | NA | NA | NA | NA | Mary Ann Liebert Inc | Mary Ann Liebert Inc | NA | 0 | NA | NA | 4 | subscription | NA | Department of Plastic Surgery, Robert Ballanger Hospital, Aulnay-sous Bois, France. | 1234 | NA | NA | 4 | 0 | 3 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamafacial.2013.335 | 2013 | Medical research | NA | fr | 2168-6076 | 2168-6076,2168-6092 | JAMA Facial Plastic Surgery | en | Effect of Lip Closure on Early Maxillary Growth in Patients With Cleft Lip and Palate | 0 | NA | NA | NA | NA | NA | NA | Mary Ann Liebert Inc | Mary Ann Liebert Inc | NA | 0 | NA | NA | 4 | subscription | NA | Department of Oral, Maxillofacial, and Facial Plastic Surgery, University of Freiburg, Freiburg, Germany2Department of Plastic, Aesthetic, and Reconstructive Surgery, Centre Hospitalier Universitaire, Angers, France. | 123456 | NA | NA | 6 | 0 | 5 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.10074 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Intensive Glucose Regulation in Hyperglycemic Acute Coronary Syndrome | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 8 | 0 | 8 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.10405 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Prostate-Specific Antigen Testing in France | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | 0 | subscription | NA | NA | NA | NA | NA | 0 |
| 10.1001/jamainternmed.2013.1216 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Communication and Medication Refill Adherence | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 9 | 0 | 9 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.2176 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Immunovirologic Control 24 Months After Interruption of Antiretroviral Therapy Initiated Close to HIV Seroconversion | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | pasteur-01420539 | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.374 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Cerebral Toxoplasmosis After Rituximab Therapy | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 2 | 0 | 2 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.6838 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Overdose Fatality and Surveillance as a Method for Understanding Mortality Trends in Homeless Populations | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.8203 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | In-Hospital and 1-Year Mortality in Patients Undergoing Early Surgery for Prosthetic Valve Endocarditis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.915 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Centralized, Stepped, Patient Preference–Based Treatment for Patients With Post–Acute Coronary Syndrome Depression | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 25 | 0 | 25 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.9294 | 2013 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Comparative Effectiveness of Fecal Immunochemical Test Outreach, Colonoscopy Outreach, and Usual Care for Boosting Colorectal Cancer Screening Among the Underserved | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 15 | 0 | 15 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.1062 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Cross-sectional and Longitudinal Analysis of the Relationship Between Aβ Deposition, Cortical Thickness, and Memory in Cognitively Unimpaired Individuals and in Alzheimer Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 13 | 0 | 13 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.1589 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Nocturnal Rapid Eye Movement Sleep Latency for Identifying Patients With Narcolepsy/Hypocretin Deficiency | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 14 | 0 | 14 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.1707 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Hereditary Ataxia and Spastic Paraplegia in Portugal | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 14 | 0 | 14 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.1804 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Association Between Angiotensin Receptor Blockers and Better Cognitive Outcome: Urgent Need for a Randomized Trial | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 6 | 0 | 6 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.1925 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | A Multicenter Study of Glucocerebrosidase Mutations in Dementia With Lewy Bodies | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 58 | 0 | 58 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.2831 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Hypothalamic Immunopathology in Anti-Ma–Associated Diencephalitis With Narcolepsy-Cataplexy | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 9 | 0 | 9 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.3242 | 2013 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | COX10Mutations Resulting in Complex Multisystem Mitochondrial Disease That Remains Stable Into Adulthood | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Medical Research Council Centre for Neuromuscular Diseases, University College London Institute of Neurology and National Hospital for Neurology and Neurosurgery, London, England.,Department of Clinical Neuroscience, University College London Institute of Neurology, London, England.,Medical Research Council Centre for Neuromuscular Diseases, University College London Institute of Neurology and National Hospital for Neurology and Neurosurgery, London, England3Mitochondrial Research Group, Clinical and Molecular Genetics Unit, Universi.,Centre de Génétique Moléculaire, UPR3404, Centre national de la recherche scientifique, Gif-sur-Yvette, France.,Division of Mathematical Biology, National Institute for Medical Research, London, England.,Dubowitz Neuromuscular Centre, University College London Institute of Child Health and Great Ormond Street Hospital for Children NHS Foundation Trust, London, England12Division of Neuropathology, University College London Institute of Neurology, London, E.,Dubowitz Neuromuscular Centre, University College London Institute of Child Health and Great Ormond Street Hospital for Children NHS Foundation Trust, London, England.,Medical Research Council Centre for Neuromuscular Diseases, University College London Institute of Neurology and National Hospital for Neurology and Neurosurgery, London, England13Department of Molecular Neuroscience, University College London Institute o. | 123451920212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.3268 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | SYNE1Mutations in Autosomal Recessive Cerebellar Ataxia | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 15 | 0 | 15 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.3545 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Evidence of Recessive Alzheimer Disease Loci in a Caribbean Hispanic Data Set | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 8 | 0 | 8 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.3652 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Should CLIPPERS Be Considered a Prelymphoma State or a New Inflammatory Disease? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.3849 | 2013 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | SQSTM1Mutations in French Patients With Frontotemporal Dementia or Frontotemporal Dementia With Amyotrophic Lateral Sclerosis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | INSERM, UMR_S975, Centre de Recherche de l’Institut du Cerveau et de la Moelle Epinière, Hôpital de la Salpêtrière, F-75013, Paris, France2Université Pierre Marie Curie-Paris 06, UMR_S975, F-75013, Paris, France3Centre national de la recherche scientifique, UMR 7225, F-75013, Paris, France4AP-HP, Hôpital de la Pitié-Salpêtrière, Centre de Référence des Démences Rares, Paris, France5AP-HP, Hôpital de la Pitié-Salpêtrière, Département des maladies du système nerveux, Paris, France. | 123451415161718 | NA | NA | 18 | 0 | 17 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.3890 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Longitudinally Extensive Transverse Myelitis With and Without Aquaporin 4 Antibodies | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 9 | 0 | 9 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.448 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Analysis of Genome-Wide Association Studies of Alzheimer Disease and of Parkinson Disease to Determine If These 2 Diseases Share a Common Genetic Risk | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.4521 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Next-Generation Phenotyping and Genomic Incidental Findings | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 2 | 0 | 2 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.579 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Using Exome Sequencing to Reveal Mutations in TREM2 Presenting as a Frontotemporal Dementia–like Syndrome Without Bone Involvement | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 13 | 0 | 13 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.584 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Intracranial Aneurysm and Recessive Polycystic Kidney Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 5 | 0 | 5 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.587 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Neurologic and Vascular Abnormalities in Klippel-Trenaunay-Weber Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 10 | 0 | 10 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.698 | 2013 | Medical research | NA | c(“fr”, “pt”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Genetic Analysis of Inherited Leukodystrophies | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Reta Lilla Weston Laboratories, Department of Molecular Neuroscience, Institute of Neurology, University College London, London, England.,Inserm, UMR_S975, CRICM, UPMC Univ Paris 06, UMR_S975, CNRS UMR 7225, Assistance Publique-Hôpitaux de Paris, Hôpital de la Salpêtrière, Paris, France.,Centre de reference des Démences Rares, Assistance Publique-Hôpitaux de Paris, Hôpital de la Salpêtrière, Paris, France.,Queen Square Brain Bank, Institute of Neurology, University College London, London, England.,Département de Génétique et Cytogénétique, Assistance Publique-Hôpitaux de Paris, Hôpital de la Salpêtrière, Paris, France. | 123423242526 | NA | NA | 26 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.929 | 2013 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Incidence of Amyotrophic Lateral Sclerosis Among American Indians and Alaska Natives | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 6 | 0 | 6 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2013.1743 | 2013 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Automated Analysis of Retinal Images for Detection of Referable Diabetic Retinopathy | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 14 | 0 | 14 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2013.2368 | 2013 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Influence of Multifocal Intraocular Lenses on Standard Automated Perimetry Test Results | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2013.4242 | 2013 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Baseline Factors Predictive of Visual Prognosis in Acute Postoperative Bacterial Endophthalmitis in Patients Undergoing Cataract Surgery | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Ophthalmology, Université Joseph Fourier-Grenoble 1, Grenoble France2Department of Ophthalmology, University Hospital, Grenoble, France. | 1234567 | NA | NA | 7 | 0 | 6 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaophthalmol.2013.4476 | 2013 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Early-Onset Foveal Involvement in Retinitis Punctata Albescens With Mutations inRLBP1 | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Genetics of Sensory Diseases, Centre Hospitalier Régional Universitaire de Montpellier, Montpellier, France. | 1234567 | NA | NA | 7 | 0 | 6 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaophthalmol.2013.5297 | 2013 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | 24-Hour Intraocular Pressure Rhythm in Young Healthy Subjects Evaluated With Continuous Monitoring Using a Contact Lens Sensor | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Joseph Fourier University-Grenoble 1, Grenoble, France2Department of Ophthalmology, University Hospital, CHU Grenoble, Grenoble, France3INSERM U1042, Lab Hypoxia and Physiopathology, Joseph Fourier University, Grenoble, France.,Joseph Fourier University-Grenoble 1, Grenoble, France2Department of Ophthalmology, University Hospital, CHU Grenoble, Grenoble, France.,INSERM U1042, Lab Hypoxia and Physiopathology, Joseph Fourier University, Grenoble, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaoto.2013.2666 | 2013 | Medical research | NA | NA | 2168-6181 | 2168-6181 | JAMA Otolaryngology–Head & Neck Surgery | en | Inclusion of Extracapsular Spread in the pTNM Classification System | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 7 | 0 | 7 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaoto.2013.4990 | 2013 | Medical research | NA | NA | 2168-6181 | 2168-6181 | JAMA Otolaryngology–Head & Neck Surgery | en | Supracricoid Partial Laryngectomy for Primary and Recurrent Laryngeal Cancer | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Otorhinolaryngology–Head and Neck Surgery, University of Pennsylvania, Philadelphia”),list(name = “Université Paris Descartes Sorbonne Paris Cité Service ORL et Chirurgie Cervico-faciale, Hôpital Européen Georges-Pompidou, AP-HP, Paris, France”) | NA | NA | NA | 4 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamapsychiatry.2013.2187 | 2013 | Medical research | NA | NA | 2168-622X | 2168-622X | JAMA Psychiatry | en | Toward a Genuinely Patient-Centered Metric of Depression Recovery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 3 | 0 | 3 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamapsychiatry.2013.282 | 2013 | Social sciences | NA | NA | 2168-622X | 2168-622X | JAMA Psychiatry | en | ANKK1, TTC12, and NCAM1 Polymorphisms and Heroin Dependence | 1 | 4754.419 | openAPC_estimation_issn | NA | NA | 4754.419 | 15 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 15 | 0 | 15 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamapsychiatry.2013.44 | 2013 | Medical research | NA | NA | 2168-622X | 2168-622X | JAMA Psychiatry | en | Altered Reward Processing in Adolescents With Prenatal Exposure to Maternal Cigarette Smoking | 1 | 4754.419 | openAPC_estimation_issn | NA | NA | 4754.419 | 15 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamapsychiatry.2013.786 | 2013 | Medical research | NA | NA | 2168-622X | 2168-622X | JAMA Psychiatry | en | Neuroimaging Evidence for the Deficit Subtype of Schizophrenia | 1 | 4754.419 | openAPC_estimation_issn | NA | NA | 4754.419 | 15 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 9 | 0 | 9 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamasurg.2013.3376 | 2013 | Medical research | NA | NA | 2168-6254 | 2168-6254 | JAMA Surgery | en | Pattern and Clinical Predictors of Lymph Node Involvement in Nonfunctioning Pancreatic Neuroendocrine Tumors (NF-PanNETs) | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 10 | 0 | 10 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamasurg.2013.3743 | 2013 | Medical research | NA | NA | 2168-6254 | 2168-6254 | JAMA Surgery | en | Early Experience of a Transcatheter Aortic Valve Program at a Veterans Affairs Facility | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | NA | NA | NA | NA | 16 | 0 | 16 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamasurg.2013.63 | 2013 | Medical research | NA | fr | 2168-6254 | 2168-6254 | JAMA Surgery | en | Predictive Factors of Postoperative Mortality After Junctional and Gastric Adenocarcinoma Resection | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Digestive and Oncological Surgery, University Hospital Claude Huriez, Regional University Hospital Center, Lille, France. | 12345678910 | NA | NA | 10 | 0 | 9 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamasurg.2013.685 | 2013 | Medical research | NA | fr | 2168-6254 | 2168-6254 | JAMA Surgery | en | No-Scar Transanal Total Mesorectal Excision | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | IRCAD/EITS, 1 Place de l’Hôpital, 67091 Strasbourg, France. joel.leroy@ircad.fr | 12345 | NA | NA | 5 | 0 | 4 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamasurg.2013.739 | 2013 | Medical research | NA | fr | 2168-6254 | 2168-6254 | JAMA Surgery | en | Virtual Neck Exploration for Parathyroid Adenomas | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | IRCAD/Institut Hospitalo Universitaire, Strasbourg, France. jacques.marescaux@ircad.fr | 123456 | NA | NA | 6 | 0 | 5 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamasurg.2013.768 | 2013 | Medical research | NA | fr | 2168-6254 | 2168-6254 | JAMA Surgery | en | Laparoscopic Spleen-Preserving Distal Pancreatectomy | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Chirurgie Digestive, Hôpital Saint-André, Bordeaux, France. jpadam1@free.fr | 1234567 | NA | NA | 7 | 0 | 6 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1002/0471141755.ph0565s61 | 2013 | Medical research | NA | fr | 1934-8282 | 1934-8282,1934-8290 | Current Protocols in Pharmacology | en | Models of Depression: Unpredictable Chronic Mild Stress in Mice | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | INSERM 930, UFR Sciences et Techniques, Tours, France. | 123 | NA | NA | 3 | 0 | 2 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | 0 | subscription | NA | NA | hybrid | NA | NA | 0 |
| 10.1002/0471141755.ph1001s63 | 2013 | Medical research | NA | fr | 1934-8282 | 1934-8282,1934-8290 | Current Protocols in Pharmacology | en | Overview of Safety Pharmacology | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | Porsolt S.A.S, Le Genest-Saint-Isle, France. | 123 | NA | NA | 3 | 0 | 2 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | hybrid | NA | NA | NA |
| 10.1002/0471141755.ph1007s61 | 2013 | Medical research | NA | fr | 1934-8282 | 1934-8282,1934-8290 | Current Protocols in Pharmacology | en | An Overview of QT Interval Assessment in Safety Pharmacology | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | Porsolt SAS, Le Genest-Saint-Isle, France. | 123 | NA | NA | 3 | 0 | 2 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | hybrid | NA | NA | NA |
| 10.1002/0471142301.ns0219s64 | 2013 | Biology (fond.) | NA | fr | 1934-8576 | 1934-8584,1934-8576 | Current Protocols in Neuroscience | en | Assembly of Synapses: Biomimetic Assays to Control Neurexin/Neuroligin Interactions at the Neuronal Surface | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | Université Bordeaux, Bordeaux Imaging Center, Bordeaux, France. | 123 | NA | NA | 3 | 0 | 2 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | 1 | subscription | NA | NA | hybrid | NA | NA | 1 |
| 10.1002/0471142301.ns0704s63 | 2013 | Biology (fond.) | NA | NA | 1934-8576 | 1934-8584,1934-8576 | Current Protocols in Neuroscience | en | Detection and Quantification of Neurotransmitters in Dialysates | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | list(name = “National Institute on Drug Abuse Intramural Research Program, National Institutes of Health Baltimore Maryland”),list(name = “AniRa‐Neurochem and BioRaN, Centre de Recherche en Neurosciences de Lyon Lyon France”) | NA | NA | NA | 4 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1002/0471142301.ns0944s64 | 2013 | Biology (fond.) | NA | fr | 1934-8576 | 1934-8584,1934-8576 | Current Protocols in Neuroscience | en | A Choice‐Based Screening Method for Compulsive Drug Users in Rats | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | Université de Bordeaux, CNRS, Institut des Maladies Neurodégénératives, Bordeaux, France. | 1234 | NA | NA | 4 | 0 | 3 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | 1 | subscription | NA | NA | hybrid | NA | NA | 1 |
| 10.1002/0471142735.im1433s101 | 2013 | Medical research | NA | NA | 1934-3671 | 1934-3671,1934-368X | Current Protocols in Immunology | en | Measuring Intravascular Migration of Mouse Ly6C low Monocytes In Vivo Using Intravital Microscopy | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | list(name = c(“Centre for Molecular & Cellular Biology of Inflammation, King’s College London London United Kingdom”, “Peter Gorer Department of Immunobiology, King’s College London London United Kingdom”, “These authors contributed equally to this work”)),list(name = c(“INSERM U838, Institut Necker, Paris Descartes University Paris France”, “CNRS UMR8104, INSERM U1016, Institut Cochin, Paris Descartes University Paris France”, “These authors contributed equally to this work”)),list(name = c(“Centre for Molecular & Cellular Biology of Inflammation, King’s College London London United Kingdom”, “Peter Gorer Department of Immunobiology, King’s College London London United Kingdom”, “INSERM U838, Institut Necker, Paris Descartes University Paris France”)) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1002/0471250953.bi0123s44 | 2013 | Biology (fond.) | NA | c(“us”, “fr”) | 1934-3396 | 1934-3396,1934-340X | Current Protocols in Bioinformatics | en | mtDNA Variation and Analysis Using Mitomap and Mitomaster | 0 | NA | NA | NA | NA | NA | NA | Wiley | Wiley | NA | 0 | NA | NA | 2 | subscription | NA | Center for Mitochondrial and Epigenomic Medicine, Children’s Hospital of Philadelphia Research Institute, Philadelphia, Pennsylvania, USA.,Center for Biomedical Informatics, The Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA; phone: 1-267-426-1375; fax: 1-215-590-5245.,Center for Mitochondrial and Epigenomic Medicine, Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA; phone: 1-267-425-3064; fax: 1-267-426-0978; work cell: 1-215-866-8121.,Center for Biomedical Informatics, The Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA; phone: 1-267-426-0675; fax: 1-215-590-5245.,Center for Mitochondrial and Epigenomic Medicine, Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA.,Center for Biomedical Informatics, The Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA; phone: 1-267-426-1373; fax: 1-215-590-5245.,National Center for Neurodegenerative and Mitochondrial Diseases CHU Angers, Biochemistry and Genetics Department, Angers, France.,Center for Mitochondrial and Epigenomic Medicine, Children’s Hospital of Philadelphia Research Institute, Philadelphia, PA; Department of Pathology and Laboratory Medicine; University of Pennsylvania, Philadelphia, PA; phone: 1-267-425-3078; fax: 1-267-426-0978. | 12345678 | NA | NA | 8 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | NA | NA | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
import_manips(2014)
Temps d’exécution de l’import des données : 1.8 secs.
Dimensions du jeu de données : 119205 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/jama.2013.283136 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Physical Tests for Shoulder Disorders | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Occupational Health Unit, Paris Teaching Hospital, Garches, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.10057 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Self-monitoring and Medication Self-titration on Systolic Blood Pressure in Hypertensive Patients at High Risk of Cardiovascular Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “National Institute for Health Research (NIHR) School for Primary Care Research, Nuffield Department of Primary Care Health Sciences, University of Oxford, Oxford, United Kingdom”),list(name = “Primary Care Unit, Strangeways Research Laboratory, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”),list(name = “Primary Care Clinical Sciences, NIHR School for Primary Care Research, University of Birmingham, Birmingham, Edgbaston, Birmingham, United Kingdom”),list(name = “School of Psychology, University of Central Lancashire, Preston, Lancashire, United Kingdom”),list(name = “Centre for Clinical Epidemiology and Evaluation, Vancouver Coastal Health Research Institute, Vancouver, British Columbia, Canada6School of Population and Public Health, University of British Columbia, Vancouver, British Columbia, Canada”),list(name = “Institute of Cardiovascular Sciences, NIHR University College London Hospitals Biomedical Research Centre, University College London, London, United Kingdom”) | NA | NA | NA | 16 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.10498 | 2014 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Prevention of Gastric Cancer | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Section of Early Detection and Prevention, International Agency for Research on Cancer, Lyon, France.,Department of Medicine, Stanford University Medical Center, Stanford, California.,Division of Public Health Sciences, Fred Hutchinson Cancer Research Center, Seattle, Washington. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.10538 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Clinical and Safety Outcomes Associated With Treatment of Acute Venous Thromboembolism | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medicine, the Ottawa Hospital Research Institute, University of Ottawa, Ottawa, Ontario, Canada”),list(name = “Department of Epidemiology and Community Medicine, University of Ottawa, Ottawa, Ontario, Canada”),list(name = “Canadian Agency for Drugs and Technologies in Health, Ottawa, Ontario, Canada”),list(name = “Ottawa Heart Institute, Department of Epidemiology and Community Medicine, University of Ottawa, Ottawa, Ontario, Canada”) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.11061 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Darapladib on Major Coronary Events After an Acute Coronary Syndrome | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “TIMI Study Group, Cardiovascular Division, Brigham and Women’s Hospital, Boston, Massachusetts”),list(name = “Green Lane Cardiovascular Service, Auckland City Hospital, Auckland University, Auckland, New Zealand”),list(name = “Metabolic Pathways and Cardiovascular Therapeutic Area, GlaxoSmithKline, Philadelphia, Pennsylvania”),list(name = “Metabolic Pathways and Cardiovascular Therapeutic Area, GlaxoSmithKline, Research Triangle Park, North Carolina”),list(name = “Henry Ford Heart and Vascular Institute, Detroit, Michigan”),list(name = “Erasmus University, Thoraxcentrum, Rotterdam, the Netherlands13International Center for Circulatory Health, Imperial College, London, United Kingdom”) | NA | NA | NA | 21 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.11132 | 2014 | Medical research | NA | c(“ge”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Discovery of High-Frequency Deep Brain Stimulation for Treatment of Parkinson Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Emory University School of Medicine, Atlanta, Georgia.,Department of Neurology and Neurosurgery, Grenoble University Hospital and INSERM U318, Joseph Fourier University, Grenoble, France. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.11450 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Global Tuberculosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centers for Disease Control and Prevention, Atlanta, Georgia”),list(name = “Columbia University, New York, New York”),list(name = “International Union Against Tuberculosis and Lung Disease, Paris, France4London School of Hygiene and Tropical Medicine, London, United Kingdom”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.12572 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Cardiac Assessment Before Stem Cell Transplantation for Systemic Sclerosis—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Rheumatology and Clinical Immunology, University Medical Center Utrecht, Utrecht, the Netherlands”),list(name = “Assistance Publique-Hôpitaux de Paris, Saint-Louis Hospital, Paris, France”),list(name = “Department of Rheumatology, University Hospital Basel, Basel, Switzerland”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.13381 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association Between Hospital-Level Obstetric Quality Indicators and Maternal and Neonatal Morbidity | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Population Health Science & Policy, Icahn School of Medicine at Mount Sinai, New York, New York2Department of Obstetrics, Gynecology, and Reproductive Science, Icahn School of Medicine at Mount Sinai, New York, New York”),list(name = “Department of Population Health Science & Policy, Icahn School of Medicine at Mount Sinai, New York, New York3Inserm UMR 1153, Obstetrical, Perinatal and Pediatric Epidemiology Research Team (Epopé), Center for Epidemiology and Biostatistics Sorbonne Pari”),list(name = “University of Washington School of Public Health, Seattle”),list(name = “Department of Population Health Science & Policy, Icahn School of Medicine at Mount Sinai, New York, New York”) | NA | NA | NA | 5 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.1361 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Prevalence, Characteristics, and Publication of Discontinued Randomized Trials | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Basel Institute for Clinical Epidemiology and Biostatistics, University Hospital of Basel, Basel, Switzerland”),list(name = “Cochrane Switzerland, Institute of Social and Preventive Medicine (IUMSP), Lausanne University Hospital, Lausanne, Switzerland”),list(name = “Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada14Department of Medicine, McMaster University, Hamilton, Ontario, Canada”),list(name = “German Cochrane Centre, Institute of Medical Biometry and Medical Informatics, Freiburg University Medical Center, Freiburg, Germany”),list(name = “Institute of Social and Preventive Medicine, University of Zurich, Zurich, Switzerland”),list(name = “Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada”),list(name = “Basel Institute for Clinical Epidemiology and Biostatistics, University Hospital of Basel, Basel, Switzerland3Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada”) | NA | NA | NA | 38 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.14349 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Assessment of Heterogeneity in Meta-analyses—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centre de Recherche Epidémiologie et Statistique, Paris, France”),list(name = “Mailman School of Public Health, Columbia University, New York, New York”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.1478 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Hypothermia for Bacterial Meningitis—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Réanimation Médicale et Infectieuse, Groupe Hospitalier Bichat-Claude Bernard, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.15101 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Cost-effectiveness of Dalteparin vs Unfractionated Heparin for the Prevention of Venous Thromboembolism in Critically Ill Patients | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Sunnybrook Health Sciences Centre, University of Toronto, Toronto, Ontario, Canada”),list(name = “Health Outcomes and PharmacoEconomic (HOPE) Research Centre, Sunnybrook Health Sciences Centre, Toronto, Ontario, Canada3Department of Pharmacology, University of Toronto, Toronto, Ontario, Canada”),list(name = “Department of Medicine, University of Toronto, Toronto, Ontario, Canada”),list(name = “Department of Clinical Epidemiology & Biostatistics, McMaster University, Hamilton, Ontario, Canada”),list(name = “Department of Research and Evaluation, Kaiser Permanente Southern California, Pasadena, California”),list(name = “Critical Care Medicine, Hôpital Maisonneuve-Rosemont, Montreal, Quebec, Canada”),list(name = “Department of Medicine, Trillium Hospital, Mississauga, Ontario, Canada”),list(name = “Intensive Care Unit, Royal Melbourne Hospital, Parkville, Victoria, Australia”),list(name = “ANZIC-RC Department of Epidemiology and Preventive Medicine, Monash University, Melbourne, Victoria, Australia”),list(name = “Department of Medicine, McMaster University, Hamilton, Ontario, Canada40Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada”) | NA | NA | NA | 32 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.15284 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Perioperative Aspirin and Clonidine and Risk of Acute Kidney Injury | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “London Health Sciences Centre and Western University, London, Ontario, Canada”),list(name = “Cleveland Clinic, Cleveland, Ohio”),list(name = “McMaster University, Hamilton Health Sciences Centre, St Joseph’s Healthcare and the Population Health Research Institute, Hamilton, Ontario, Canada”),list(name = “Royal Melbourne Hospital, Melbourne, Australia”),list(name = “Cliniques Universitaires Saint-Luc and the Université Catholique de Louvain, Brussels, Belgium”) | NA | NA | NA | 45 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.1748 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Hypothermia for Bacterial Meningitis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Anesthesiology and Critical Care Medicine, Hôpital Européen Georges Pompidou, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.1873 | 2014 | Medical research | NA | c(“at”, “jp”, “fr”, “no”, “fi”, “se”, “is”, “es”, “us”, “nl”, “it”, “au”, “tr”, “il”, “dk”, “de”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Glycated Hemoglobin Measurement and Prediction of Cardiovascular Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University of Cambridge, Cambridge, United Kingdom.,Johns Hopkins University, Baltimore, Maryland. | 23456737475761 | NA | NA | 76 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.2135 | 2014 | Medical research | NA | c(“ch”, “nl”, “be”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Age-Adjusted D-Dimer Cutoff Levels to Rule Out Pulmonary Embolism | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Angiology and Hemostasis, Geneva University Hospital, Geneva, Switzerland.,Department of Vascular Medicine, Amsterdam Medical Center, Amsterdam, the Netherlands.,Department of Thrombosis and Hemostasis, Leiden University Medical Center, Leiden, the Netherlands.,Emergency Department, Centre Hospitalier Universitaire d’Angers, L’Université Nantes Angers Le Mans, Angers, France.,Cliniques Universitaires Saint-Luc, Bruxelles, Belgium.,Hôpital Européen Georges-Pompidou, Paris, France.,Department of Vascular Medicine, University Medical Center Groningen, Groningen, the Netherlands.,Ottawa Health Research Institute, Ottawa, Canada23Centre d’Investigations Cliniques, Université de Brest, Brest, France. | 123452324252627 | NA | NA | 27 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.2225 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Hemoglobin A1cLevels Among Patients With Diabetes Receiving Nonsurgical Periodontal Treatment | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Dental Faculty, Toulouse University Hospital, Toulouse, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.2623 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Use of Corticosteroids After Hepatoportoenterostomy for Bile Drainage in Infants With Biliary Atresia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Cincinnati Children’s Hospital Medical Center, Cincinnati, Ohio”),list(name = “University of Michigan, Ann Arbor”),list(name = “Children’s Hospital of Pittsburgh of UPMC, Pittsburgh, Pennsylvania”),list(name = “UCSF Benioff Children’s Hospital, San Francisco, California”),list(name = “Lurie Children’s Hospital of Chicago, Chicago, Illinois”),list(name = “National Institutes of Health, National Institute of Diabetes and Digestive and Kidney Diseases, Bethesda, Maryland”),list(name = “University of Colorado School of Medicine and Children’s Hospital Colorado, Aurora”) | NA | NA | NA | 24 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.3 | 2014 | Medical research | NA | c(“be”, “fr”, “de”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Atrial Tissue Fibrosis Identified by Delayed Enhancement MRI and Atrial Fibrillation Catheter Ablation | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Comprehensive Arrhythmia and Research Management Center, University of Utah School of Medicine, Salt Lake City.,Loyola University Medical Center, Maywood, Illinois.,University of Leipzig, Leipzig, Germany.,Centre Hospitalier Universitaire de Bordeaux, Bordeaux, France.,Morsani College of Medicine, University of South Florida, Tampa.,Ohio State University, Columbus.,Asklepios Klinik St Georg, Hamburg, Germany.,Medical Center Porz am Rhein, Cologne, Germany.,Klinikum Coburg GmbH, II, Medizinische Klinik, Coburg, Germany. | 123451617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.318 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Short-Acting β-Blocker Administration in Patients With Septic Shock | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “School of Medicine, Paris Descartes University, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.4030 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Evolocumab or Ezetimibe Added to Moderate- or High-Intensity Statin Therapy on LDL-C Lowering in Patients With Hypercholesterolemia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Epidemiology, College of Public Health, University of Iowa, Iowa City2Department of Medicine, College of Public Health, University of Iowa, Iowa City”),list(name = “Center for Clinical and Basic Research, Aalborg, Denmark”),list(name = “Division of Cardiovascular Disease, University of Alabama Medical Center, Birmingham”),list(name = “Department of Medicine, Herbert Wertheim College of Medicine, Florida International University, Miami”),list(name = “Orange County Research Center, Tustin, California”),list(name = “Amgen Inc, Thousand Oaks, California”),list(name = “Maine Research Associates, Auburn”) | NA | NA | NA | 12 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.469 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Home-Based Exercise Program on Functional Recovery Following Rehabilitation After Hip Fracture | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Boston University, Boston, Massachusetts”),list(name = “MGH Institute of Health Professions, Boston, Massachusetts”),list(name = “Harvard Medical School, Boston Massachusetts4Spaulding Cambridge Outpatient Center, Cambridge Massachusetts”),list(name = “Spaulding Rehabilitation Network, Boston Massachusetts”),list(name = “RTI International, Boston Massachusetts”),list(name = “Spaulding Cambridge Outpatient Center, Cambridge Massachusetts”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.5173 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Home-Based Exercise and Hip Fracture Rehabilitation—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Health and Disability Research Institute, Boston University School of Public Health, Boston, Massachusetts”),list(name = “Spaulding Rehabilitation Hospital Network, Boston, Massachusetts”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.5305 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Perioperative, Cardiac Output–Guided Hemodynamic Therapy Algorithm on Outcomes Following Major Gastrointestinal Surgery | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Queen Mary University of London, London, England”),list(name = “Intensive Care National Audit and Research Centre, London, England”),list(name = “Critical Care Unit, University of Edinburgh, Edinburgh, Scotland”),list(name = “Critical Care Unit, Queen Elizabeth Hospital, King’s Lynn, England”) | NA | NA | NA | 12 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.607 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Associations of Housing Mobility Interventions for Children in High-Poverty Neighborhoods With Subsequent Mental Disorders During Adolescence | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts”),list(name = “School of Education, University of California Irvine, Irvine”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts4Department of Economics, Harvard University, Cambridge, Massachusetts”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts5Congressional Budget Office, Washington, DC”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts6Harris School of Public Policy, University of Chicago, Chicago, Illinois”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.6368 | 2014 | Medical research | NA | c(“it”, “gb”, “mq”, “gr”, “be”, “ca”, “ch”, “at”, “nl”, “fr”, “de”) | 0098-7484 | 0098-7484 | JAMA | en | Autologous Hematopoietic Stem Cell Transplantation vs Intravenous Pulse Cyclophosphamide in Diffuse Cutaneous Systemic Sclerosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institute of Cellular Medicine, Newcastle University, Newcastle upon Tyne, United Kingdom.,Internal Medicine and Vascular Disease Unit, AP-HP Hôpital Saint-Louis, Paris 7 University, France.,Department of Medical Decision Making, Leiden University Medical Center, Leiden, the Netherlands.,Department of Rheumatology, The James Cook University Hospital, Middlesbrough, United Kingdom.,Service d’Hématologie Clinique et de Thérapie Cellulaire, AP-HP Hôpital Saint-Antoine, Paris 6 University, Paris, France.,Department of Immunohematology and Blood Transfusion, Leiden University Medical Center, Leiden, the Netherlands.,Hematology/Transplantation, AP-HP Hôpital Saint-Louis, Paris 7 University, France.,Department of Hematology, University Hospital Basel, Basel, Switzerland.,Department of Rheumatology, University Hospital Basel, Basel, Switzerland. | 123454243444546 | NA | NA | 46 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.6471 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Housing Mobility and Adolescent Mental Health—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts”) | NA | NA | NA | 1 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.6596 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Guidelines for Managing High Blood Pressure | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Independent researcher, Long Beach, California”),list(name = “Laboratoire de Biométrie et Biologie Evolutive, Université Claude Bernard Lyon 1, Villeurbanne, France”),list(name = “Department of Anesthesiology, Pharmacology and Therapeutics, University of British Columbia, Vancouver, Canada”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.6634 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Decline in Estimated Glomerular Filtration Rate and Subsequent Risk of End-Stage Renal Disease and Mortality | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland”),list(name = “Department of Community Health Sciences, University of Calgary, Calgary, Alberta, Canada”),list(name = “Department of Nephrology, University Medical Center Groningen, University of Groningen, Groningen, the Netherlands”),list(name = “Dialysis Unit, University Hospital of the Ryukyus, Okinawa, Japan”),list(name = “Inserm U1018, CESP Center for Research in Epidemiology and Population Health and UMRS 1018, Paris-Sud University, Villejuif, France”),list(name = “Division of Nephrology, Tufts Medical Center, Boston, Massachusetts”) | NA | NA | NA | 27 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7189 | 2014 | Medical research | NA | c(“it”, “je”, “ch”, “at”, “jp”, “tw”, “fr”, “de”, “cn”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Everolimus on Survival in Advanced Hepatocellular Carcinoma After Failure of Sorafenib | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Massachusetts General Hospital Cancer Center, Harvard Medical School, Boston.,Kinki University School of Medicine, Osaka, Japan.,ICM Val d’Aurelle, Montpellier, France.,University Nord De France, Lille, France.,Asan Medical Center, University of Ulsan College of Medicine, Seoul, Republic of Korea.,Novartis Pharma, Basel, Switzerland.,Novartis Pharmaceuticals, East Hanover, New Jersey.,National Institute of Cancer Research, National Health Research Institutes, Tainan, Taiwan19National Cheng Kung University Hospital, Tainan, Taiwan20Kaohsiung Medical University Hospital, Kaohsiung Medical University, Kaohsiung, Taiwan. | 123451617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7246 | 2014 | Medical research | NA | c(“dk”, “nl”, “de”, “ch”, “pt”, “ca”, “it”, “us”, “il”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Transcatheter Aortic Valve Implantation in Failed Bioprosthetic Surgical Valves | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | St Paul’s Hospital, Vancouver, British Columbia, Canada.,German Heart Center, Munich, Germany.,Deutsches Herzzentrum Berlin, Berlin, Germany.,Washington Hospital Center, Washington, DC.,Clinical Institute S. Ambrogio, Milan, Italy.,St George’s Hospital, London, England.,Columbia University Medical Center/New York Presbyterian Hospital and the Cardiovascular Research Foundation, New York, New York.,Rabin Medical Center and Tel Aviv University, Tel Aviv, Israel. | 123453536373839 | NA | NA | 39 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7247 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effects of Decontamination of the Oropharynx and Intestinal Tract on Antibiotic Resistance in ICUs | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medical Microbiology, University Medical Center Utrecht, Utrecht2Department of Intensive Care Medicine, University Medical Center Utrecht, Utrecht”),list(name = “Department of Intensive Care Medicine, University Medical Center Utrecht, Utrecht”),list(name = “Department of Intensive Care, Academic Medical Center, University of Amsterdam, Amsterdam”),list(name = “Department of Medical Microbiology, Academic Medical Center, University of Amsterdam, Amsterdam”),list(name = “Department of Intensive Care Medicine, Leiden University Medical Center, Leiden”),list(name = “Izore, Centre for Infectious Diseases Friesland, Leeuwarden”),list(name = “Nij Smellinghe Hospital, Drachten”),list(name = “Department of Critical Care, University of Groningen, University Medical Center Groningen, Groningen”),list(name = “Department of Medical Microbiology, University Medical Center Utrecht, Utrecht32Julius Center for Health Sciences and Primary Care, University Medical Center Utrecht, Utrecht, the Netherlands”) | NA | NA | NA | 36 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7586 | 2014 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Postoperative Antibiotic Administration on Postoperative Infection Following Cholecystectomy for Acute Calculous Cholecystitis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Digestive Surgery, Amiens University Medical Center, Amiens, France2Jules Verne University of Picardie, Unit EA4294, Amiens, France3Clinical Research Center, Amiens University Medical Center, Amiens, France.,Division of Digestive Surgery, Amiens University Medical Center, Amiens, France.,Division of Digestive Disease, Paris Lariboisière Hospital, Paris, France.,Division of Digestive Surgery, Beauvais Hospital, Beauvais, France.,Division of Digestive Surgery, Montreuil-sur-Mer Hospital, Montreuil-sur-Mer, France.,Division of Internal Medicine and Systemic Diseases, Amiens University Medical Center, Amiens, France.,Division of Clinical Research and Innovation, Amiens University Medical Center, Amiens, France. | 123451516171819 | NA | NA | 19 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.7607 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Age-Adjusted D-Dimer Cutoff Levels and Pulmonary Embolism—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Division of Angiology and Hemostasis, Geneva University Hospital and Faculty of Medicine, Geneva, Switzerland”),list(name = “Department of Vascular Medicine, University of Groningen, Groningen, the Netherlands”),list(name = “Ottawa Hospital Research Institute, Ottawa, Ontario, Canada”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7682 | 2014 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effects of Hydroxychloroquine on Symptomatic Improvement in Primary Sjögren Syndrome | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Rheumatology, Service de Rhumatologie, Hôpitaux Universitaires de Strasbourg, Centre de Référence National Pour les Maladies Auto-Immunes Systémiques Rares, Université de Strasbourg, Strasbourg, France.,Department of Epidemiology and Public Health, Hotel Dieu, Assistance Publique-Hôpitaux de Paris (AP-HP), Paris, France.,Department of Internal Medicine, Cochin Hospital, AP-HP, Paris, France.,Department of Pharmacy, Hôpitaux Universitaires Paris-Sud, AP-HP, Le Kremlin Bicêtre, France.,Department of Centre de Ressources Biologiques, Bichat Hospital, AP-HP, Paris, France.,Department of Rheumatology, Hôpitaux Universitaires Paris-Sud, AP-HP, INSERM U 1012, Université Paris Sud, Le Kremlin Bicêtre, France. | 123451920212223 | NA | NA | 23 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.7698 | 2014 | Medical research | NA | c(“be”, “nl”, “de”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | High-Protein Enteral Nutrition Enriched With Immune-Modulating Nutrients vs Standard High-Protein Enteral Nutrition and Nosocomial Infections in the ICU | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Gelderse Vallei Hospital, Ede, the Netherlands.,Groupe Hôpital Pellegrin - CHU Bordeaux, Bordeaux, France.,Universitätsklinikum Leipzig, Germany.,Heinrich-Braun-Klinikum, Zwickau, Germany.,Klinikum Neuperlach, Munich, Germany.,Erasme University Hospital, Université libre de Bruxelles, Brussels, Belgium.,Nutricia Advanced Medical Nutrition, Nutricia Research, Utrecht, the Netherlands. | 123451314151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.7999 | 2014 | Medical research | NA | c(“fr”, “in”, “ge”, “br”) | 0098-7484 | 0098-7484 | JAMA | en | HIV Prevention in Clinical Care Settings | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University of Washington, Seattle.,Emory University, Atlanta, Georgia.,The Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland.,University of North Carolina at Chapel Hill.,University of Connecticut, Storrs.,Massachusetts General Hospital, Boston.,Université de Bordeaux, Bordeaux, France.,The Johns Hopkins University, Baltimore, Maryland.,University of California San Diego. | 123451314151617 | NA | NA | 17 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.8166 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association Between Analytic Strategy and Estimates of Treatment Outcomes in Meta-analyses | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centre de Recherche Epidémiologie et Statistique, INSERM U1153, Paris, France2Centre d’Épidémiologie Clinique, Hôpital Hôtel Dieu, Assistance Publique des Hôpitaux de Paris, Paris, France3Faculté de Médecine, Université Paris Descartes, Sorbonne Paris Cit”),list(name = “Centre for Statistics in Medicine, Oxford, United Kingdom”),list(name = “Centre de Recherche Epidémiologie et Statistique, INSERM U1153, Paris, France5Department of Epidemiology, Mailman School of Public Health, Columbia University, New York, New York”) | NA | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.836 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Mortality in Patients With Hypovolemic Shock Treated With Colloids or Crystalloids | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service de Réanimation Médicale, GH Henri Mondor, Créteil, France”),list(name = “Department of Critical Care Medicine, National Institutes of Health Clinical Center, Bethesda, Maryland”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.841 | 2014 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Mortality in Patients With Hypovolemic Shock Treated With Colloids or Crystalloids—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Raymond Poincaré Hospital, University of Versailles, Garches, France”),list(name = “Saint Louis Hospital, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.4662 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Reflectance Confocal Microscopy Features of Degos Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, University Hospital of Nice, Nice, France.,Department of Pathology, University Hospital of Nice, Nice, France.,Department of Dermatology, University Hospital of Nice, Nice, France3INSERM U1065 C3M Team 1, Nice, France4Cliniacal Research Center, University Hospital of Nice, Nice, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.5757 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Clinical and Immunologic Factors Associated With Bullous Pemphigoid Relapse During the First Year of Treatment | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Reims University Hospital, University of Champagne-Ardenne, Reims, France.,Clinical Research Unit, Reims University Hospital, Reims, France.,Department of Dermatology, Institute for Research and Innovation in Biomedicine, Rouen University Hospital, University of Normandy, Rouen, France.,Department of Dermatology, Limoges University Hospital, Limoges, France.,Department of Dermatology, Dijon University Hospital, Dijon, France.,Department of Dermatology, Mulhouse Hospital, Mulhouse, France.,Department of Dermatology, Chalons en Champagne Hospital, Chalons en Champagne, France.,Laboratory of Dermatology, Faculty of Medicine of Reims, University of Champagne-Ardenne, Reims, France. | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.6398 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Effect of Permethrin–Impregnated Underwear on Body Lice in Sheltered Homeless Persons | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Unité de Recherche sur les Maladies Infectieuses et Tropicales Émergentes, Aix-Marseille Université, Marseille, France2Institut Hospitalo-Universitaire Méditerranée Infection, Marseille, France.,Unité de Recherche sur les Maladies Infectieuses et Tropicales Émergentes, Aix-Marseille Université, Marseille, France2Institut Hospitalo-Universitaire Méditerranée Infection, Marseille, France3Service des Entérobactéries et Hygiène de l’Environnement, In.,Unité de Recherche sur les Maladies Infectieuses et Tropicales Émergentes, Aix-Marseille Université, Marseille, France.,Institut Hospitalo-Universitaire Méditerranée Infection, Marseille, France4Institut National de la Santé et de la Recherche Médicale, Aix-Marseille Université, Marseille, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.6434 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Juvenile Xanthogranuloma and Nevus Anemicus in the Diagnosis of Neurofibromatosis Type 1 | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Dermatology, Centre Hospitalier Universitaire de Dijon4Centre de Compétence Maladies Rares Neurofibromatose 1, Dijon, France.,Medical Genetics, Centre Hospitalier Universitaire de Dijon4Centre de Compétence Maladies Rares Neurofibromatose 1, Dijon, France.,Medical Genetics, Centre Hospitalier Universitaire de Dijon3Research Unit EA 4271 Génétique des Anomalies du Développement, Université de Bourgogne, PRES Bourgogne-Franche Comté, France4Centre de Compétence Maladies Rares Neurofibromatose 1, Dijon, France.,Dermatology, Centre Hospitalier Universitaire de Dijon3Research Unit EA 4271 Génétique des Anomalies du Développement, Université de Bourgogne, PRES Bourgogne-Franche Comté, France4Centre de Compétence Maladies Rares Neurofibromatose 1, Dijon, France. | 1234 | NA | NA | 4 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.6675 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Staging for Cutaneous Squamous Cell Carcinoma as a Predictor of Sentinel Lymph Node Biopsy Results | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Currently a medical student at Case Western Reserve University School of Medicine, Cleveland, Ohio”),list(name = “Department of Dermatology, Mayo Clinic, Rochester, Minnesota”),list(name = “Department of Dermatology, Case Western Reserve University School of Medicine, Cleveland, Ohio4Department of Dermatology, University Hospitals Case Medical Center, Cleveland, Ohio”) | NA | NA | NA | 4 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2013.6698 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Prolonged Evolution of Drug Reaction With Eosinophilia and Systemic Symptoms | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Rouen University Hospital, Rouen, France2National Institute of Health and Medical Research Unit 905, Institute for Research and Innovation in Biomedicine, Rouen University Hospital, University of Normandy, Rouen, France.,National Institute of Health and Medical Research Unit 905, Institute for Research and Innovation in Biomedicine, Rouen University Hospital, University of Normandy, Rouen, France3Singapore Immunology Network, Agency for Science, Technology and Research, B. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.6908 | 2014 | Medical research | NA | c(“de”, “mx”, “jp”, “br”, “es”, “be”, “at”, “it”, “ro”, “ar”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Recurrent Melanocytic Nevi and Melanomas in Dermoscopy | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Public, Private, and Teaching Practice of Dermatology, Konstanz, Germany.,Medical University of Graz, Graz, Austria.,Dermatology Service, Department of Medicine, Memorial Sloan-Kettering Cancer Center, New York, New York.,Skin Cancer Unit, Arcispedale Santa Maria Nuova IRCCS, Reggio Emilia, Italy.,Medical Research Institute “A. Lanari,” University of Buenos Aires, Buenos Aires, Argentina.,Department of Dermatology, Tokyo Women’s Medical University Medical Center East, Tokyo, Japan.,Department of Dermatology, Lyon 1 University Centre Hospitalier Lyon Sud, Pierre Bénite, France.,Department of Dermatology, Centre du Cancer, Cliniques Universitaires St Luc, Université Catholique de Louvain, Brussels, Belgium.,Department of Dermatology, Medical University of Vienna, Vienna, Austria. | 123451415161718 | NA | NA | 18 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2013.7452 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Improvement of Survival in Patients With Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type, in France | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, Hôpital Robert Debré, Reims, France”),list(name = “Department of Dermatology, Hôpital Charles Nicolle, Rouen, France”),list(name = “Unité d’Aide Méthodologique, Hôpital Robert Debré, Reims, France”),list(name = “Department of Dermatology, Hôpital Saint-Louis, Paris, France”),list(name = “Department of Dermatology, Hôpital de l’Hôtel-Dieu, Lyon, France”),list(name = “Department of Dermatology, Hôpital Saint-Eloi, Montpellier, France”),list(name = “Department of Dermatology, Hôpital Avicenne, Bobigny, France”),list(name = “Department of Dermatology, Hôpital Ambroise Paré, Boulogne, France”),list(name = “Department of Pathology, Hôpital du Haut Lévêque, Pessac, France”),list(name = “Department of Dermatology, Hôpital du Haut Lévêque, Pessac, France”) | NA | NA | NA | 20 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.7792 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Emergency Department Diagnosis and Management of Skin Diseases With Real-Time Teledermatologic Expertise | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Hôpital Henri Mondor, AP-HP, Créteil, France2Department of Design Engineering, Ecole Centrale Paris, Chatenay-Malabry, France.,Department of Dermatology, Hôpital Saint Louis-Lariboisière, AP-HP, Paris, France.,Emergency Department, Hôpital Saint Louis-Lariboisière, AP-HP, Paris, France.,Emergency Department, Hôpital Saint Antoine, AP-HP, Paris, France. | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.7994 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Genetics of Atopic Dermatitis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “The Institut National de la Santé et de la Recherche Médicale (INSERM), U781, Université Paris Descartes–Sorbonne Paris Cité, Institut Imagine, Paris, France”),list(name = “The Institut National de la Santé et de la Recherche Médicale (INSERM), U781, Université Paris Descartes–Sorbonne Paris Cité, Institut Imagine, Paris, France2Department of Genetics, Necker–Enfants Malades Hospital, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.8709 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | A NewTRPV3Missense Mutation in a Patient With Olmsted Syndrome and Erythromelalgia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut National de la Santé et de la Recherche Médicale, U781, Paris, France2Université Paris Descartes-Sorbonne Paris Cité, Paris, France3Institut Imagine, Paris, France.,Université Paris Descartes-Sorbonne Paris Cité, Paris, France4Genomics Platform, Institut Imagine, Paris, France.,Department of Pathology, Necker-Enfants Malades Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France.,Université Paris Descartes-Sorbonne Paris Cité, Paris, France6Bioinformatics Platform, Institut Imagine, Paris, France.,Université Paris Descartes-Sorbonne Paris Cité, Paris, France3Institut Imagine, Paris, France7Department of Dermatology, Necker-Enfants Malades Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France8National Reference Centre for Genodermatoses (MA.,Institut National de la Santé et de la Recherche Médicale, U781, Paris, France2Université Paris Descartes-Sorbonne Paris Cité, Paris, France3Institut Imagine, Paris, France9Department of Genetics, Necker-Enfants Malades Hospital, Assistance Publique-Hôpit. | 12345678 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.8727 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Prognostic Value of Skin Manifestations of Infective Endocarditis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, Centre Hospitalier Universitaire (CHU) Henri-Mondor Hospital, Assistance Publique–Hôpitaux de Paris (AP-HP), Créteil, France”),list(name = “Centre d’Investigation Clinique–Epidémiologie Clinique, CHU de Nancy, Nancy, France”),list(name = “Department of Infectious and Tropical Diseases, CHU de Caremeau, Nîmes, France”),list(name = “Departments of Cardiology and Therapeutics, CHU de Reims, Faculté de Médecine, Reims, France”),list(name = “Department of Infectious and Tropical Diseases, CHU Hôpital de la Croix Rousse, Lyon, France”),list(name = “Department of Infectious and Tropical Diseases, CHU de Besançon, Unité Mixte de Recherche Centre Nationale de Recherche Scientifique 6249 Chrono-Environnement, Université de Franche-Comté, Besançon, France”),list(name = “Department of Dermatology, Centre Hospitalier Universitaire (CHU) Henri-Mondor Hospital, Assistance Publique–Hôpitaux de Paris (AP-HP), Créteil, France7Université Paris–Est Créteil Val-de-Marne, Institut National de la Santé et de la Récherche Médicale (I”),list(name = “INSERM CIC 007, AP-HP, CHU Bichat, INSERM Unité 738, Université Paris Diderot, Unité de Formation et de Recherche de Médecine, Site Bichat, Paris, France”) | NA | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.9340 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Locoregional Multiple Nodular Panniculitis Induced byPseudomonas aeruginosaWithout Septicemia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, University François Rabelais, Hospital of Tours, Tours, France.,Department of Dermatology, University François Rabelais, Hospital of Tours, Tours, France2INSERM U930, University François Rabelais, Tours, France.,Department of Pathology, University François Rabelais, Hospital of Tours, Tours, France.,Department of Dermatology, University François Rabelais, Hospital of Tours, Tours, France4Laboratory of Molecular Virology and Immunology, ISP 1282, INRA-University François Rabelais, Tours, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2013.9411 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Risk for Nevus Transformation and Melanoma Proliferation and Invasion During Natalizumab Treatment | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Archet 2 Hospital, Centre Hospitalier Universitaire (CHU) Nice, Nice, France.,Institut National de la Santé et de la Recherche Médicale (INSERM), U1065, Team 11, Centre Méditerranéen de Médecin Moléculaire (C3M), Nice, France.,Department of Neurology, Pasteur Hospital, CHU Nice, Nice, France.,Department of Dermatology, Archet 2 Hospital, Centre Hospitalier Universitaire (CHU) Nice, Nice, France4INSERM, U1065, Team 12, C3M, Nice, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.1171 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Telaprevir-Induced Acquired Perforating Dermatosis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, St Eloi Hospital, Montpellier, France2University of Montpellier I, Montpellier, France3Department of Pathology, Gui de Chauliac Hospital, Montpellier, France.,Department of Dermatology, St Eloi Hospital, Montpellier, France2University of Montpellier I, Montpellier, France4Liver Transplant Unit, St Eloi Hospital, Montpellier, France.,Department of Dermatology, St Eloi Hospital, Montpellier, France2University of Montpellier I, Montpellier, France5INSERM (Institut national de la santé et de la recherche médicale) U1058, Montpellier, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.1348 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Comparison of Clinicopathologic Features and Survival of Histopathologically Amelanotic and Pigmented Melanomas | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, University of North Carolina, Chapel Hill2Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill”),list(name = “Sydney School of Public Health, The University of Sydney, Sydney, New South Wales, Australia”),list(name = “Department of Dermatology, University of North Carolina, Chapel Hill4Now with the Department of Dermatology, University of California, Irvine”),list(name = “Department of Medicine, University of North Carolina, Chapel Hill6Now with the Department of Medicine, University of Virginia, Charlottesville”),list(name = “Department of Pathology, Memorial Sloan-Kettering Cancer Center, New York, New York”),list(name = “Division of Epidemiology, Departments of Internal Medicine and Dermatology, University of New Mexico, Albuquerque”),list(name = “Department of Dermatology, University of North Carolina, Chapel Hill”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill”),list(name = “Department of Epidemiology and Biostatistics, Memorial Sloan-Kettering Cancer Center, New York, New York”) | NA | NA | NA | 26 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2014.1437 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Characterization of S628N | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Institut National de la Santé et de la Recherche Médicale, Centre de Recherche en Cancérologie de Marseille, Marseille, France”),list(name = “Ecole Doctorale des Sciences de la Vie et de la Santé, Aix-Marseille University, Marseille, France”),list(name = “Centre National de la Recherche Scientifique, Ecole Normale Supérieure de Cachan, Laboratoire de Biologie et Pharmacologie Appliquée, Cachan, France”),list(name = “Département de Dermatologie, Hôpital d’Instruction des Armées Sainte-Anne, Toulon, France”),list(name = “Département d’Oncologie Médicale, Institut Paoli-Calmettes, Marseille, France”) | NA | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.504 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Effects of Low-Dose Recombinant Interleukin 2 to Promote T-Regulatory Cells in Alopecia Areata | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, University Hospital of Nice, Nice, France.,Department of Dermatology, University Hospital of Nice, Nice, France2Centre de Recherche Clinique (CRC), University Hospital of Nice, Nice, France.,Laboratory of Clinical and Experimental Pathology, University Hospital of Nice, Nice, France.,Laboratory of Immunology, University Hospital of Nice, Nice, France.,Department of Dermatology, University Hospital of Nice, Nice, France5Institut National de la Santé et de la Récherche Médicale (INSERM) U1065, Team 12, Mediterranean Centre of Molecular Medicine, Nice, France. | 12345678 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.51 | 2014 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Toward a Practical Renaming of Bullous Pemphigoid and All Its Variants | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, University Hospital-Inselspital Bern, University of Berne, Berne, Switzerland2Department of Dermatology, Rouen University Hospital, Rouen, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.821 | 2014 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | High Frequency and Clinical Prognostic Value of MYD88 L265P Mutation in Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg-Type | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Equipe d’accueil 2406, Histology and Molecular Pathology of Tumors, Universitaire Bordeaux, Bordeaux, France2Department of Dermatology, Centre Hospitalier Universitaire Bordeaux, Bordeaux, France.,Equipe d’accueil 2406, Histology and Molecular Pathology of Tumors, Universitaire Bordeaux, Bordeaux, France2Department of Dermatology, Centre Hospitalier Universitaire Bordeaux, Bordeaux, France3French Study Group for Cutaneous Lymphomas, France.,Unité d’Aide Méthodologique, Hôpital Robert Debré, Reims, France.,Department of Clinical Research, Hôpital Maison Blanche, Centre Hospitalier Universitaire Reims, Reims, France.,French Study Group for Cutaneous Lymphomas, France6Department of Pathology, Centre Hospitalier Universitaire Dijon, Dijon, France.,Equipe d’accueil 2406, Histology and Molecular Pathology of Tumors, Universitaire Bordeaux, Bordeaux, France3French Study Group for Cutaneous Lymphomas, France7Department of Pathology, Centre Hospitalier Universitaire Bordeaux, Bordeaux, France.,Tumor Bank and Tumor Biology Laboratory, Centre Hospitalier Universitaire Bordeaux, Bordeaux, France.,Equipe d’accueil 2406, Histology and Molecular Pathology of Tumors, Universitaire Bordeaux, Bordeaux, France8Tumor Bank and Tumor Biology Laboratory, Centre Hospitalier Universitaire Bordeaux, Bordeaux, France.,Equipe d’accueil 2406, Histology and Molecular Pathology of Tumors, Universitaire Bordeaux, Bordeaux, France3French Study Group for Cutaneous Lymphomas, France8Tumor Bank and Tumor Biology Laboratory, Centre Hospitalier Universitaire Bordeaux, Bordeaux, F.,French Study Group for Cutaneous Lymphomas, France9Department of Dermatology, Hôpital Robert Debré, Centre Hospitalier Universitaire Reims, Reims, France. | 12345678910 | NA | NA | 10 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.11171 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Lack of Adjustment for Body Mass Index | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “International Prevention Research Institute (iPRI), Lyon, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.11332 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Cost-Effectiveness Decision Making and US Public Opinion | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “PhD Program in Health Policy, Harvard University, Cambridge, Massachusetts”),list(name = “Health Policy and Management, Harvard School of Public Health, Boston, Massachusetts”),list(name = “Harvard School of Public Health, Boston, Massachusetts”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2013.11342 | 2014 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | An Education Program for Risk Factor Management After an Acute Coronary Syndrome | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Cardiologie, Hôpital Saint-Antoine, Assistance Publique des Hôpitaux de Paris, Université Pierre et Marie Curie, Paris, France.,currently in private practice, Paris, France.,Service de Cardiologie, Hôpital Lariboisière, Assistance Publique des Hôpitaux de Paris, Institut National de la Santé et de la Recherche Médicale Unité 738, Paris, France.,Service de Cardiologie, Hôpital La Roseraie, Aubervilliers, France.,Institut Cardiologie, Hôpital Pitié-Salpêtrière, Assistance Publique des Hôpitaux de Paris, Université Paris 6 (Université Pierre et Marie Curie), Institut National de la Santé et de la Récherche Médicale Commission Médicale Régionale 937, Paris, France.,Centre d’Epidémiologie Clinique, Hôpital Hôtel Dieu, Assistance Publique des Hôpitaux de Paris, Paris, France7Institut National de la Santé et de la Recherche Médicale Unité 738, Paris, France8Faculté de Médecine, Université Paris Descartes, Sorbonne Pari.,Département Hospitalo-Universitaire Fibrosis-Inflammation-Remodeling (FIRE), Hôpital Bichat, Assistance Publique des Hôpitaux de Paris, Paris, France10Service de Cardiologie, Institut National de la Santé et de la Recherche Médicale INSERM Unité 698, Univ. | 1234589101112 | NA | NA | 12 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.13752 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Antihypertensive Medications and Breast Cancer Risk | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Gynecology and Endocrinology, Hôpital Universitaire Paris Centre, Paris-Descartes University, Paris, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2013.7674 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | The Continuing Challenge of Turning Promising Observational Evidence About Risk for Dementia to Evidence Supporting Prevention | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Institut National de la Santé et de la Recherche Médicale (INSERM) Centre U897 and Clinical Investigation Centre EC7, Institut de Santé Publique, d’Épidémiologie et de Développement, Bordeaux University, Centre Hospitalier Universitaire de Bordeaux (Pole”),list(name = “Department of Public Health and Primary Care, Cambridge Institute of Public Health, University of Cambridge, Cambridge, England”) | NA | NA | NA | 2 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.1532 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Estimating Overdiagnosis in Lung Cancer Screening | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service de Pneumologie Aiguë Spécialisée et Cancérologie Thoracique, CH Lyon Sud, Hospices Civils de Lyon, Pierre Bénite, France2Faculté de Médecine Lyon-Sud, Université Lyon 1, Oullins, France”),list(name = “Aix Marseille Univ–Assistance Publique–Hôpitaux de Marseille, Multidisciplinary Oncology & Therapeutic Innovations Department, Marseille, France”),list(name = “Respiratory Disease Department, Tenon Hospital, Assistance Publique–Hôpitaux de Paris, Paris, France5Intergroupe Francophone de Cancérologie Thoracique (IFCT), Paris, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.169 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Nonleg Venous Thrombosis in Critically Ill Adults | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centre de recherche Clinique Étienne-Le Bel, Université de Sherbrooke, Sherbrooke, Quebec, Canada”),list(name = “Department of Medicine (Division of Critical Care), The Ottawa Hospital, Ottawa, Ontario, Canada”),list(name = “Center for Health Evaluation and Outcome Sciences and Department of Medicine, St Paul’s Hospital and University of British Columbia, Vancouver, British Columbia, Canada”),list(name = “Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada”),list(name = “Department of Clinical Epidemiology and Biostatistics, McMaster University, Hamilton, Ontario, Canada5Department of Medicine, McMaster University, Hamilton, Ontario, Canada”),list(name = “Department of Radiology, McMaster University, Hamilton, Ontario, Canada”),list(name = “Department of Medical Imaging, University of Toronto, Toronto, Ontario, Canada”),list(name = “Department of Medicine, Hôpital Maisonneuve Rosemont, Montreal, Quebec, Canada”) | NA | NA | NA | 21 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2014.3773 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Prevalence of Anginal Symptoms and Myocardial Ischemia and Their Effect on Clinical Outcomes in Outpatients With Stable Coronary Artery Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Université Paris-Diderot, Sorbonne Paris-Cité, Paris, France2Unit 1148, Institut National de la Santé et de la Recherche Médicale, Paris, France3Département Hospitalo-Universitaire FIRE (Fibrosis, Inflammation and Remodeling), Department of Cardiology, Hô”),list(name = “Robertson Centre for Biostatistics, University of Glasgow, Glasgow, Scotland”),list(name = “Third Division of Cardiology, Medical University of Silesia, Katowice, Poland”),list(name = “Department of Medicine, Montreal Heart Institute, Université de Montréal, Montreal, Quebec, Canada”),list(name = “Department of Cardiology and Laboratory for Technologies of Advanced Therapies Centre, University Hospital of Ferrara and Maria Cecilia Hospital, Ferrara, Italy9Maria Cecili Hospital, Gruppo Villa Maria Care & Research, Ettore Sansavini Health Science Fou”),list(name = “Heart Institute, Peking University People’s Hospital, Beijing, China”),list(name = “State Research Centre for Preventive Medicine, Moscow, Russia”),list(name = “Department of Cardiology, Institute Adrogue, Buenos Aires, Argentina15Department of Cardiology, University Buenos Aires, Buenos Aires, Argentina”),list(name = “National Heart and Lung Institute, Imperial College, Institute of Cardiovascular Medicine and Sciences, Royal Brompton Hospital, London, England”) | NA | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 1 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.4509 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Antidepressant Dosage and Suicidal Ideation | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centre Hospitalier Régional Universitaire de Montpellier, Institut National de la Santé et de la Récherche Médicale Unité 1061, Université Montpellier, Montpellier, France2Fondation Fondamental, Créteil, France”),list(name = “La Clinique des Maladies Mentales et de l’Encéphale, Sainte-Anne Hospital, Institut National de la Santé et de la Récherche Médicale Unité 894, Paris, France”) | NA | NA | NA | 4 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.651 | 2014 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Improving Medication Adherence and Helping Patients Make Lifestyle Changes—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service de Cardiologie, Hôpital Saint-Antoine, Assistance Publique des Hôpitaux de Paris (AP-HP), Université Pierre et Marie Curie, Paris, France”),list(name = “Currently in private practice, Paris, France”),list(name = “Centre d’Epidémiologie Clinique, Hôpital Hôtel Dieu, Assistance Publique des Hôpitaux de Paris, Paris, France4Institut National de la Santé et de la Recherche Médicale Unité 738, Paris, France5Faculté de Médecine, Université Paris Descartes, Sorbonne Pari”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.3209 | 2014 | Medical research | NA | c(“dk”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Severe Axial Myopathy in McArdle Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Neuromuscular Research Unit, Department of Neurology, Blegdamsvej, Copenhagen, Sealand, Denmark.,Department of Clinical Genetics, University of Copenhagen, Copenhagen, Denmark.,Laboratoire des Maladies Héréditaires du Métabolisme et Dépistage Néonatal, Centre de Biologie Est, Hospices Civils de Lyon, Lyon, France. | 1234 | NA | NA | 4 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.4847 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Amyloid Imaging With Carbon 11–Labeled Pittsburgh Compound B for Traumatic Brain Injury | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Wolfson Brain Imaging Centre, University of Cambridge, Cambridge, England5Department of Clinical Neurosciences, University of Cambridge, Cambridge, England.,Division of Anaesthesia, University of Cambridge, Addenbrooke’s Hospital, Cambridge, England.,Institute of Neuroscience and Psychology, University of Glasgow, Scotland.,Wolfson Brain Imaging Centre, University of Cambridge, Cambridge, England5Department of Clinical Neurosciences, University of Cambridge, Cambridge, England8INSERM U894, Université Paris Descartes, Sorbonne Paris Cité, Paris, France.,University of Glasgow and Southern General Hospital, Glasgow, Scotland.,Wolfson Brain Imaging Centre, University of Cambridge, Cambridge, England2Division of Anaesthesia, University of Cambridge, Addenbrooke’s Hospital, Cambridge, England. | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.5100 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | DCTN1Mutation Analysis in Families With Progressive Supranuclear Palsy–Like Phenotypes | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Pierre et Marie Curie Université Paris 06, Unité Mixte de Recherche (UMR)_S975, Paris, France2Institut National de la Santé et de la Récherche Médicale, UMR_S975, Centre de Recherche Institut du Cerveau et de la Moelle, Paris, France3Centre Nat.,Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpital de la Pitié-Salpêtrière, Centre de Référence des Démences Rares, Paris, France6AP-HP, Hôpital de la Pitié-Salpêtrière, Département de Génétique et Cytogénétique, Unité Fonctionnelle de Neurogénétique.,Institut National de la Santé et de la Récherche Médicale, UMR_S975, Centre de Recherche Institut du Cerveau et de la Moelle, Paris, France5AP-HP, Hôpital de la Pitié-Salpêtrière, Département de Neurologie, Paris, France.,Service de Neurologie, Centre Hospitalier Universitaire (CHU) Guillaume et René Laënnec, Nantes, France. | 123451112131415 | NA | NA | 15 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.5390 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Associations Between Serum Cholesterol Levels and Cerebral Amyloidosis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “University of California, Davis”),list(name = “University of California, Berkeley”),list(name = “University of Southern California, Los Angeles”) | NA | NA | NA | 6 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.5528 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Inosine to Increase Serum and Cerebrospinal Fluid Urate in Parkinson Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Massachusetts General Hospital, Boston, Massachusetts”),list(name = “Harvard School of Public Health, Boston, Massachusetts”),list(name = “Cornell University, New York, New York”),list(name = “Brigham and Women’s Hospital, Boston, Massachusetts”),list(name = “Clinical Coordination Center, University of Rochester, Rochester, New York”) | NA | NA | NA | 60 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.5574 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Reversibility of Brainstem Damage After a Mechanical Thrombectomy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Interventional Neuroradiology, Hôpital Neurologique Pierre Wertheimer, Bron, France.,Stroke Unit, Department of Neurology, Hôpital Neurologique Pierre Wertheimer, Bron, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.5875 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Reversible Cerebral Vasoconstriction Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, Montpellier University Hospital, Montpellier, France”),list(name = “Center for Vasculitis Care and Research, Cleveland Clinic Foundation, Cleveland, Ohio”),list(name = “Department of Neurology, Massachusetts General Hospital, Boston, Massachusetts”),list(name = “Department of Neurology, Neurological Institute, Taipei Veterans General Hospital, Taipei, Taiwan”) | NA | NA | NA | 4 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.5993 | 2014 | Medical research | NA | c(“je”, “nl”, “de”, “ch”, “es”, “ca”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Vitamin D as an Early Predictor of Multiple Sclerosis Activity and Progression | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Harvard School of Public Health, Boston, Massachusetts.,University of British Columbia, Vancouver, Canada.,Bayer HealthCare, Berlin, Germany.,Bayer HealthCare Pharmaceuticals, Montville, New Jersey.,University Hospital Basel, Basel, Switzerland.,Bayer HealthCare, Berlin, Germany6Heinrich-Heine Universität, Düsseldorf, Germany.,Bayer HealthCare, Berlin, Germany12Department of Neurology, University Hospital of Bonn, Bonn, Germany. | 123451314151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2013.6013 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Suspected Subdural Hematoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Rouen University Hospital, University of Rouen, Rouen, France.,Department of Neurosurgery, Rouen University Hospital, University of Rouen, Rouen, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2013.6240 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Switching From Natalizumab to Fingolimod in Multiple Sclerosis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, University Hospital of Nice, Nice, France.,Department of Neurology, Salpêtrière Hospital, Paris, France.,Department of Neurology, University Hospital of Reims, Reims, France.,Department of Neurology, University Hospital of Strasbourg, Strasbourg, France.,Department of Neurology, University Hospital of Lyon, Lyon, France.,Department of Neurology, University Hospital of Mulhouse, Mulhouse, France.,Department of Neurology, University Hospital of Nimes, Nimes, France. | 123452728293031 | NA | NA | 31 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.1011 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Cerebellar Ataxia and Glutamic Acid Decarboxylase Antibodies | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Neurology Service, Hospital Clínic, Barcelona, Spain2Neuroimmunology Program, Institut d’Investigacions Biomèdiques August Pi i Sunyer, University of Barcelona, Barcelona, Spain”),list(name = “Neuroimmunology Program, Institut d’Investigacions Biomèdiques August Pi i Sunyer, University of Barcelona, Barcelona, Spain”),list(name = “Neurology Service, Department of Neurosciences, Cruces University Hospital, University of the Basque Country, Bizkaia, Spain”),list(name = “Neurology Service, University Hospital Politècnic La Fe, Valencia, Spain”),list(name = “Neuroimmunology Program, Institut d’Investigacions Biomèdiques August Pi i Sunyer, University of Barcelona, Barcelona, Spain5Institució Catalana de Recerca i Estudis Avançats, Barcelona, Spain6Department of Neurology, University of Pennsylvania, Philadelp”) | NA | NA | NA | 11 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.1138 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Moving to Fingolimod From Natalizumab in Multiple Sclerosis—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, University Hospital of Nice, Nice, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.131 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | A Randomized Clinical Trial of High-Dosage Coenzyme Q10 in Early Parkinson Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, Weill Cornell Medical College, New York Hospital, New York”),list(name = “Department of Biostatistics, University of Rochester Medical Center, Rochester, New York”),list(name = “Department of Neurology, Georgetown University, Washington, DC”),list(name = “Department of Neurology, University of Chicago, Chicago, Illinois”),list(name = “Department of Neurology, Ochsner Clinic Foundation, New Orleans, Louisiana”),list(name = “Department of Neurology, Beth Israel Medical Center, New York, New York”) | NA | NA | NA | 162 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.1316 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Extensive White Matter Involvement in Patients With Frontotemporal Lobar Degeneration | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut du Cerveau et de la Moelle Épinière (ICM), Institut National de la Santé et de la Recherche Médicale (INSERM), U 1127, Paris, France2University Pierre and Marie Curie, UMR S975, F-75013, Paris, France3Centre National de la Recherche Scientifique.,Centre de Référence des Démences Rares, Hôpital de la Pitié-Salpêtrière, Assistance Publique Hopitaux de Paris (AP-HP), Paris, France.,Centre Mémoire de Ressource et de Recherche, Service de Neurologie, Centre Hospitalier Universitaire Pontchaillou, Rennes, France12Université de Caen/Basse-Normandie, École Pratique des Hautes Études, INSERM, Unité U1077, Groupement d’Intérêt Public, Cyce.,Service de Neurologie et Centres Mémoire de Ressources et de Recherche, Centre Hospitalier Universitaire, Rouen, France. | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.193 | 2014 | Medical research | NA | c(“nl”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Autosomal Recessive Cerebellar Ataxia Type 3 Due toANO10Mutations | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Département de neurologie, hôpitaux universitaires de Strasbourg, hôpital de Hautepierre, Strasbourg, France2Institut de Génétique et de Biologie Moléculaire et Cellulaire, Institut National de la Santé et de la Recherche Médicale, Centre National de la R.,Department of Human Genetics, Radboud University Medical Centre, Nijmegen, the Netherlands.,Université Pierre et Marie Curie Paris 6, Centre de recherche de l’institut du cerveau et de la moelle épinière, Paris, France6AP-HP, Hôpital de la Salpêtrière, Département de Génétique et Cytogénétique, Paris, France.,Institut de Génétique et de Biologie Moléculaire et Cellulaire, Institut National de la Santé et de la Recherche Médicale, Centre National de la Recherche Scientifique, Université de Strasbourg, Strasbourg, France.,Institut de Génétique et de Biologie Moléculaire et Cellulaire, Institut National de la Santé et de la Recherche Médicale, Centre National de la Recherche Scientifique, Université de Strasbourg, Strasbourg, France9Laboratoire de Génétique des Maladies Rar. | 123451314151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.1944 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Exome Sequencing in the Clinical Diagnosis of Sporadic or Familial Cerebellar Ataxia | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Program in Neurogenetics, Department of Neurology, David Geffen School of Medicine, University of California at Los Angeles”),list(name = “Department of Pathology and Laboratory Medicine, David Geffen School of Medicine, University of California at Los Angeles3UCLA Clinical Genomics Center, David Geffen School of Medicine, University of California at Los Angeles”),list(name = “UCLA Clinical Genomics Center, David Geffen School of Medicine, University of California at Los Angeles4Department of Human Genetics, David Geffen School of Medicine, University of California at Los Angeles5Department of Pediatrics, David Geffen School of”),list(name = “Department of Pathology and Laboratory Medicine, David Geffen School of Medicine, University of California at Los Angeles3UCLA Clinical Genomics Center, David Geffen School of Medicine, University of California at Los Angeles4Department of Human Genetics,”),list(name = “Program in Neurogenetics, Department of Neurology, David Geffen School of Medicine, University of California at Los Angeles4Department of Human Genetics, David Geffen School of Medicine, University of California at Los Angeles”),list(name = “Program in Neurogenetics, Department of Neurology, David Geffen School of Medicine, University of California at Los Angeles2Department of Pathology and Laboratory Medicine, David Geffen School of Medicine, University of California at Los Angeles3UCLA Clin”) | NA | NA | NA | 12 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.209 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Natalizumab Use During the Third Trimester of Pregnancy | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, St Josef-Hospital, Ruhr University Bochum, Bochum, Germany”),list(name = “Department of Research and Evaluation, Kaiser Permanente Southern California, Pasadena”),list(name = “Department of General Pediatrics, University Children’s Hospital Münster, Münster, Germany”),list(name = “University Children’s Hospital Mannheim, Heidelberg University, Heidelberg, Germany”),list(name = “Institute for Clinical Neuroimmunology, Ludwig-Maximilians-University, Munich, Germany”),list(name = “Biogen Idec, Cambridge, Massachusetts”),list(name = “Department of Neurology, St Josef-Hospital, Ruhr University Bochum, Bochum, Germany2Department of Research and Evaluation, Kaiser Permanente Southern California, Pasadena”) | NA | NA | NA | 15 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.313 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Comparison of Parkinson Risk in Ashkenazi Jewish Patients With Gaucher Disease andGBAHeterozygotes | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “The Taub Institute, Department of Neurology, Columbia University Medical Center, New York, New York”),list(name = “Gaucher Clinic, Shaare Zedek Medical Center, Jerusalem, Israel”),list(name = “Department of Genetics and Genomic Sciences, Mount Sinai School of Medicine, New York, New York”) | NA | NA | NA | 16 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.629 | 2014 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Charcot-Marie-Tooth Disease Type 2A | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Groupe Hospitalier (GH) Pitié-Salpêtrière, Centre de Référence des Maladies Neuromusculaires Paris Est, Institut de Myologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Paris, France.,Département de Neurologie, Hôpitaux Universitaires, Centre Hospitalier Universitaire (CHU) de Strasbourg, Strasbourg, France.,Département de Génétique et de Cytogénétique, GH Pitié-Salpêtrière, AP-HP, Paris, France.,Département de Biochimie, Centre de Biologie Est, Hospices Civils de Lyon, Bron, France.,Service d’Ophtalmologie, Fondation Rothschild, Paris, France.,Département de Génétique et de Cytogénétique, GH Pitié-Salpêtrière, AP-HP, Paris, France7Institut National de la Santé et de la Recherche Médicale U 1127, Institut du Cerveau et de la Moelle Epiniere, Hôpital Pitié-Salpêtrière, Paris, France.,Département de Génétique et de Cytogénétique, GH Pitié-Salpêtrière, AP-HP, Paris, France7Institut National de la Santé et de la Recherche Médicale U 1127, Institut du Cerveau et de la Moelle Epiniere, Hôpital Pitié-Salpêtrière, Paris, France8Université Pi. | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.753 | 2014 | Medical research | NA | c(“ch”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Prevalence, Determinants, and Effect on Quality of Life of Freezing of Gait in Parkinson Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Clinical Pharmacology, Faculty of Medicine, University Hospital, University of Toulouse, Toulouse, France2Department of Neurosciences, University Hospital, University of Toulouse, Toulouse, France3Clinical Investigation Center 1436, Universi.,LN Pharma, Toulouse, France.,Department of Neurology, Hôpital Laënnec, Centre Hospitalier Universitaire (CHU) Nantes, Nantes, France6NS-Park Network, INSERM, Toulouse, France.,Department of Neurology, CHU Lille, Lille, France.,NS-Park Network, INSERM, Toulouse, France7Department of Neurology, CHU Lille, Lille, France8INSERM U 837 Eq6, Lille, France.,Institut des Maladies Neurodégénératives, Université de Bordeaux, Bordeaux, France10Centre National de la Recherche Scientifique, Institut des Maladies Neurodégénératives, Bordeaux, France11Service de Neurologie, CHU de Bordeaux, Bordeaux, France.,Neurology Department, Kantonsspital Münsterlingen, Münsterlingen, Switzerland.,NS-Park Network, INSERM, Toulouse, France9Institut des Maladies Neurodégénératives, Université de Bordeaux, Bordeaux, France10Centre National de la Recherche Scientifique, Institut des Maladies Neurodégénératives, Bordeaux, France11Service de Neurologie. | 12345678910 | NA | NA | 10 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.825 | 2014 | Medical research | NA | c(“ch”, “fr”, “no”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Treatment of Progressive Multifocal Leukoencephalopathy With Interleukin 7 | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Nordland Hospital Trust, Bodø, Norway2Department of Clinical Medicine, UiT The Arctic University of Tromsø, Tromsø, Norway.,Cytheris SA, Issy-les-Moulineaux, France.,Department of Microbiology and Infection Control, University Hospital of North Norway, Tromsø, Norway.,Division of Transplantation and Clinical Virology, Department of Biomedicine (Haus Petersplatz), University of Basel, Basel, Switzerland.,National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, Maryland.,Division of Transplantation and Clinical Virology, Department of Biomedicine (Haus Petersplatz), University of Basel, Basel, Switzerland7Division of Infectious Diseases and Hospital Epidemiology, University Hospital Basel, Basel, Switzerland.,Department of Clinical Medicine, UiT The Arctic University of Tromsø, Tromsø, Norway4Department of Microbiology and Infection Control, University Hospital of North Norway, Tromsø, Norway8Metabolic and Renal Research Group, UiT The Arctic University of Nor. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.895 | 2014 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Magnetic Resonance Spectroscopy Markers of Disease Progression in Multiple Sclerosis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, University of California–San Francisco4Center for Neuroimmunology, Service of Neurology, Hospital Clinic and Institut d’Investigacions Biomèdiques August Pi i Sunyer (IDIBAPS), Barcelona, Spain”),list(name = “Department of Epidemiology and Biostatistics, University of California–San Francisco”),list(name = “Department of Neurology, University of California–San Francisco”),list(name = “Department of Radiology, University of California–San Francisco”),list(name = “Department of Neurology, University of California–San Francisco2Department of Radiology, University of California–San Francisco5Department of Neurology, Yale University, New Haven, Connecticut6Department of Diagnostic Radiology, Yale University, New Haven”) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.99 | 2014 | Medical research | NA | c(“fr”, “gb”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | The Neurophysiological Features of Myoclonus-Dystonia and Differentiation From Other Dystonias | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre de Neuroimagerie de Recherche, Institut du Cerveau et de la Moelle Épinière, Paris, France2Centre de Recherche de l’Institut du Cerveau et de la Moelle Épinière, Institut National de la Santé et de la Recherche Médicale U1127, Centre de Recherche d.,Centre de Recherche de l’Institut du Cerveau et de la Moelle Épinière, Institut National de la Santé et de la Recherche Médicale U1127, Centre de Recherche de Neurosciences-Unité Mixte de Recherche 7225, Université Pierre et Marie Curie-Paris 6 UMR_S975.,Centre d’Investigation Clinique Pitié Neurosciences 1422, Hôpital Pitié-Salpêtrière, Paris, France.,Sobell Department of Motor Neuroscience and Movement Disorders, Institute of Neurology, University College London, London, England. | 123457891011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaophthalmol.2013.6077 | 2014 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Merkel Cell Carcinoma of the Eyelid | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Moorfields Eye Hospital, London, England”),list(name = “South Australian Institute of Ophthalmology, Royal Adelaide Hospital, University of Adelaide, South Australia, Australia”),list(name = “Manchester Royal Eye Hospital, Manchester, Manchester, England”),list(name = “Moorfields Eye Hospital, London, England4National Institute for Health Research Biomedical Research Centre at Moorfields Eye Hospital and University College London Institute of Ophthalmology, London, England5Department of Ophthalmology, Royal Surrey Count”),list(name = “Department of Ophthalmology, Royal Surrey County Hospital, Guildford, Surrey, England”),list(name = “Department of Dermatology, Royal Adelaide Hospital, University of Adelaide, Adelaide, South Australia, Australia”),list(name = “Department of Ophthalmology, Royal Brisbane Hospital Herston, Queensland, Australia”) | NA | NA | NA | 16 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2013.7623 | 2014 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Effect of Bifocal and Prismatic Bifocal Spectacles on Myopia Progression in Children | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “School of Optometry and Vision Science, Faculty of Health and Vision Improvement Domain, Institute of Health and Biomedical Innovation, Queensland University of Technology, Brisbane, Australia2School of Optometry, The Hong Kong Polytechnic University, Hon”),list(name = “School of Optometry, The Hong Kong Polytechnic University, Hong Kong SAR, China”),list(name = “The Wenzhou Medical University–Essilor International Research Centre, Zhejiang, China”),list(name = “School of Optometry and Vision Science, Faculty of Health and Vision Improvement Domain, Institute of Health and Biomedical Innovation, Queensland University of Technology, Brisbane, Australia”) | NA | NA | NA | 4 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2013.7671 | 2014 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Markers of Inflammation, Oxidative Stress, and Endothelial Dysfunction and the 20-Year Cumulative Incidence of Early Age-Related Macular Degeneration | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Ophthalmology and Visual Sciences, University of Wisconsin School of Medicine and Public Health, Madison2Department of Biostatistics and Medical Informatics, University of Wisconsin School of Medicine and Public Health, Madison”),list(name = “Department of Ophthalmology and Visual Sciences, University of Wisconsin School of Medicine and Public Health, Madison”),list(name = “Department of Ophthalmology and Visual Sciences, University of Wisconsin School of Medicine and Public Health, Madison3Department of Population Health Sciences, University of Wisconsin School of Medicine and Public Health, Madison”),list(name = “Department of Biostatistics and Medical Informatics, University of Wisconsin School of Medicine and Public Health, Madison3Department of Population Health Sciences, University of Wisconsin School of Medicine and Public Health, Madison”),list(name = “Departments of Epidemiology and Biostatistics, and Genetics and Ophthalmology, Case Western Reserve University, Cleveland, Ohio5Division of Human Genetics, Cincinnati Children’s Hospital Medical Center, Cincinnati, Ohio”),list(name = “Departments of Epidemiology and Biostatistics, and Genetics and Ophthalmology, Case Western Reserve University, Cleveland, Ohio”),list(name = “Department of Laboratory Medicine and Pathology, University of Minnesota Medical School, Minneapolis”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2014.1026 | 2014 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Sebaceous Carcinoma of the Eyelid and Muir-Torre Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Ophthalmology, University Hospital, Besançon, France.,Department of Ophthalmology, University Hospital, Saint-Étienne, France.,Department of Pathology, University Hospital, Besançon, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaophthalmol.2014.1731 | 2014 | Medical research | NA | c(“fr”, “us”) | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Identification of anHMGB3Frameshift Mutation in a Family With an X-linked Colobomatous Microphthalmia Syndrome Using Whole-Genome and X-Exome Sequencing | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | McKusick-Nathans Institute of Genetic Medicine, Johns Hopkins University School of Medicine, Baltimore, Maryland.,The Jackson Laboratory, Center for Human Genetics, Bar Harbor, Maine.,CHU Toulouse, Service de Génétique Médicale, Hôpital Purpan, Université Paul-Sabatier Toulouse III, Toulouse, France.,Icahn School of Medicine at Mount Sinai, New York, New York.,McKusick-Nathans Institute of Genetic Medicine, Johns Hopkins University School of Medicine, Baltimore, Maryland4Icahn School of Medicine at Mount Sinai, New York, New York. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2014.1761 | 2014 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Hourly Awakening vs Continuous Contact Lens Sensor Measurements of 24-Hour Intraocular Pressure | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Ophthalmology, University Hospital, Centre Hospitalier Universitaire, Université Grenoble Alpes, Grenoble, France.,Laboratory of Hypoxia and Physiopathology, Université Grenoble Alpes, Grenoble, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
import_manips(2015)
Temps d’exécution de l’import des données : 2.05 secs.
Dimensions du jeu de données : 120229 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/jama.2014.15912 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Antenatal Magnesium Sulfate and Outcomes for School-aged Children | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Neonatal Medicine, Rouen University Hospital and Région-INSERM (ERI 28), Normandy University, Rouen, France”),list(name = “Department of Biostatistics and INSERM UMR 657, Normandy University, Rouen, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2014.17439 | 2015 | Biology (fond.) | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Contact Precautions for Patients With Multidrug-Resistant Pathogens | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Intensive Care, University Medical Center Utrecht, Utrecht, the Netherlands”),list(name = “Nuffield Department of Clinical Medicine, University of Oxford, Oxford, England”),list(name = “Service de réanimation médicale, APHP GH Henri Mondor/ Université Paris Est-Créteil, Creteil, France”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.18484 | 2015 | Medical research | NA | c(“be”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Critical Care Evidence—New Directions | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, University of Minnesota, Minneapolis/St Paul.,Department of Intensive Care Medicine, Université Libre de Bruxelles, Brussels, Belgium.,Department of Medicine, Hôpital Raymond Poincaré (AP-HP), University of Versailles SQY, Garches, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2014.5985 | 2015 | Medical research | NA | c(“at”, “us”, “my”, “nl”, “se”, “fr”, “gb”, “ca”, “pt”, “za”, “lv”, “hk”, “hu”, “pl”, “es”, “de”, “pk”, “dk”, “gr”, “it”, “au”, “lt”, “il”, “fi”, “cz”, “be”, “is”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Type and Location ofBRCA1andBRCA2Mutations With Risk of Breast and Ovarian Cancer | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Abramson Cancer Center, Perelman School of Medicine at the University of Pennsylvania, Philadelphia2Center for Clinical Epidemiology and Biostatistics, Perelman School of Medicine at the University of Pennsylvania, Philadelphia.,Center for Clinical Epidemiology and Biostatistics, Perelman School of Medicine at the University of Pennsylvania, Philadelphia.,Centre de Recherche en Cancérologie de Lyon, UMR Inserm, Centre Léon Bérard, Lyon, France.,Department of Genetics and Computational Biology, Queensland Institute of Medical Research, Brisbane, Australia.,Cancer Research Initiatives Foundation, Sime Darby Medical Centre, Subang Jaya, Malaysia176Department of Surgery, Faculty of Medicine, University Malaya Cancer Research Institute, University Malaya, Kuala Lumpur, Malaysia.,NorthShore University HealthSystem, Department of Medicine, Evanston, Illinois.,Lunenfeld-Tanenbaum Research Institute, Mount Sinai Hospital and University of Toronto, Toronto, Ontario, Canada. | 1234525625725830000 | NA | NA | 259 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.10081 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Finerenone on Albuminuria in Patients With Diabetic Nephropathy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of Chicago Medicine, Chicago, Illinois”),list(name = “Richard L. Roudebush VA Medical Center and Indiana University, Indianapolis”),list(name = “Department of Medicine and Therapeutics, Chinese University of Hong Kong, Hong Kong, China”),list(name = “Baker IDI Heart and Diabetes Institute, Melbourne, Australia”),list(name = “Department of Nephrology, University Medical Center Groeningen, Groeningen, the Netherlands”),list(name = “Heart Diseases Research, Global Drug Discovery, Bayer HealthCare AG, Wuppertal, Germany”),list(name = “Global Clinical Development, Bayer PLC, Newbury, England”),list(name = “MARCO GmbH & Co KG, Düsseldorf, Germany”),list(name = “Global Research and Development Statistics, Bayer HealthCare AG, Leverkusen, Germany”),list(name = “Institute of Investigation and Hypertension Unit, Hospital 12 de Octubre, Madrid, Spain”) | NA | NA | NA | 15 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.10842 | 2015 | Medical research | NA | c(“ca”, “fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Outcomes After Hip Fracture Surgery Compared With Elective Total Hip Replacement | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Anesthesia, Michael DeGroote School of Medicine, McMaster University, Hamilton, Ontario, Canada2Department of Clinical Epidemiology and Biostatistics, Michael DeGroote School of Medicine, McMaster University, Hamilton, Ontario, Canada3Popula.,Centre for Statistics in Medicine, Nuffield Department of Orthopaedics, Rheumatology, and Musculoskeletal Sciences, Botnar Research Center, University of Oxford, Oxford, United Kingdom.,Department of Clinical Epidemiology and Biostatistics, Michael DeGroote School of Medicine, McMaster University, Hamilton, Ontario, Canada3Population Health Research Institute, David Braley Cardiac, Vascular and Stroke Research Institute, Hamilton Health.,Population Health Research Institute, David Braley Cardiac, Vascular and Stroke Research Institute, Hamilton Health Sciences and McMaster University, Hamilton, Ontario, Canada6Division of General Internal Medicine, McGill University, Montreal, Quebec, Can.,Department of Geriatrics, Groupe Hospitalier Pitié-Salpêtrière, Assistance Publique Hôpitaux de Paris, Paris, France8Département Hospitalo-Universitaire “Fight Against Stress and Aging”, Université Pierre et Marie Curie-Paris 06, Sorbonne Universités, Par.,Unité Propre de Recherche de l’Enseignement Supérieur Equipe d’Acceuil 2415, Clinical Research Institute, Faculty of Medicine, Montpellier University, Montpellier, France 11Department of Emergency Medicine and Surgery, Groupe Hospitalier Pitié-Salpêtrière.,Unité Propre de Recherche de l’Enseignement Supérieur Equipe d’Acceuil 2415, Clinical Research Institute, Faculty of Medicine, Montpellier University, Montpellier, France15Department of Biostatistics, Clinical Research and Medical Information, Nîmes Unive.,Department of Surgery, Michael DeGroote School of Medicine, McMaster University, Hamilton, Ontario, Canada. | 12345910111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.1108 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Sedative Premedication on Patient Experience After General Anesthesia | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service d’Anesthésie Réanimation, Hôpital de la Timone Adulte, Marseille, France.,Laboratoire Universitaire EA 3279, Santé Publique et Maladies Chroniques, Université Aix-Marseille, Marseille, France.,Service d’Anesthésie, Institut du Cancer, Université Montpellier 1, Montpellier, France.,Service d’Anesthésie Réanimation, Hôpital Archet, Université Nice Sophia-Antipolis, Nice, France.,Unité d’Aide Méthodologique, Direction de la Recherche Clinique, AP-HM, Marseille, France.,Service d’Anesthésie Réanimation, Hôpital Nord, Pavillon de l’Etoile, Université Aix-Marseille, Marseille, France. | 1234589101112 | NA | NA | 12 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.11417 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | High-Flow Nasal Oxygen Therapy for Postextubation Acute Hypoxemic Respiratory Failure | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Medical Intensive Care, Charles Nicolle University Hospital, Rouen, France”),list(name = “Department of Pneumology and Respiratory Intensive Care, Cochin University Hospital, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.11438 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | High-Flow Nasal Oxygen Therapy for Postextubation Acute Hypoxemic Respiratory Failure—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Service de Réanimation Adulte, Hôpital Marie Lannelongue, Le Plessis Robinson, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.12402 | 2015 | Medical research | NA | c(“be”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Noninvasive Ventilation vs Oxygen Therapy on Mortality Among Immunocompromised Patients With Acute Respiratory Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Saint-Louis University Hospital, Paris, France.,IPC, Lyon, France.,APHP, Paris, France.,Service de Pneumologie Et Réanimation Médicale, AP-HP, Groupe Hospitalier Pitié-Salpêtrière Charles Foix, Paris, France.,Medical-Surgical ICU, Saint-Etienne University Hospital, Saint-Etienne, France. | 123453334353637 | NA | NA | 37 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.12610 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Thrombophilia and the Risk of Recurrent Venous Thromboembolism—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Département de Médecine Interne et Pneumologie, Centre Hospitalo-Universitaire de Brest, Brest, France”),list(name = “Service de Pneumologie, Hôpital Européen Georges Pompidou, AP-HP, Paris, France”),list(name = “Centre Hospitalo-Universitaire de Brest, Brest, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.12783 | 2015 | Medical research | NA | c(“ge”, “us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Breast Cancer Screening for Women at Average Risk | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Memorial Sloan Kettering Cancer Center, New York, New York,Louisiana State University School of Public Health, New Orleans,University of Washington and the Fred Hutchinson Cancer Research Center, Seattle,Patient advocate, Troy, New York,Massachusetts General Hospital and Harvard Medical School, Boston,American Cancer Society, Atlanta, Georgia | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.13094 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | The Art of JAMA Article | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Professor Emeritus of Anthropology, History, American Studies, College of William and Mary, Williamsburg, Virginia”) | NA | NA | NA | 1 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.1429 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Coronary Artery Disease Screening Using Coronary Computed Tomography Angiography | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Diabetology, Endocrinology and Nutrition, Bichat Hospital, AP-HP, Paris, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.1474 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Clinical Outcomes at 1 Year Following Transcatheter Aortic Valve Replacement | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Mayo Clinic, Rochester, Minnesota”),list(name = “Duke Clinical Research Institute, Durham, North Carolina”),list(name = “Denver VA Medical Center, Denver, Colorado”),list(name = “University of Colorado, Denver”),list(name = “Cleveland Clinic, Cleveland, Ohio”),list(name = “Duke University Medical Center, Durham, North Carolina”),list(name = “University of California, San Francisco”),list(name = “Baylor Scott & White Health, Plano, Texas”) | NA | NA | NA | 14 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.15734 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Vericiguat, a Soluble Guanylate Cyclase Stimulator, on Natriuretic Peptide Levels in Patients With Worsening Chronic Heart Failure and Reduced Ejection Fraction | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Center for Cardiovascular Innovation, Northwestern University Feinberg School of Medicine, Chicago, Illinois”),list(name = “Division of Cardiology, Duke University Medical Center, Durham, North Carolina”),list(name = “Division of Cardiology, Stony Brook University, Stony Brook, New York”),list(name = “Heart Failure Unit, Department of Cardiology, Athens University Hospital Attikon, School of Medicine, National and Kapodistrian University of Athens, Athens, Greece”),list(name = “Department of Cardiology, National Heart Centre Singapore and Duke, National University of Singapore, Singapore”),list(name = “Bayer, São Paulo, Brazil”),list(name = “Bayer Pharma, Wuppertal, Germany”),list(name = “Department of Internal Medicine and Cardiology, Charité University Medicine Berlin–Campus Virchow Klinikum, Berlin, Germany13Department of Internal Medicine and Cardiology, German Heart Center Berlin, Berlin, Germany”) | NA | NA | NA | 15 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.16669 | 2015 | Medical research | NA | c(“cz”, “it”, “il”, “je”, “ch”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Maintenance Therapy With Tumor-Treating Fields Plus Temozolomide vs Temozolomide Alone for Glioblastoma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Hospital Zurich and University of Zurich, Zurich, Switzerland2Lausanne University Hospital (CHUV), Lausanne, Switzerland.,Assistance Publique des Hôpitaux de Paris, La Pitié-Salpétrière-University Hospital, Pierre and Marie Curie University, Paris, France.,Tel Aviv Sourasky Medical Center, Tel Aviv University, Tel Aviv, Israel.,University of California, San Diego.,Tel Aviv University, Tel Aviv, Israel.,Novocure, Haifa, Israel.,Lausanne University Hospital (CHUV), Lausanne, Switzerland. | 123452627282930 | NA | NA | 30 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.16700 | 2015 | Medical research | NA | c(“it”, “gb”, “ch”, “fr”, “be”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Autologous Hematopoetic Stem Cell Transplantation for Refractory Crohn Disease | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Nottingham Digestive Diseases Centre, School of Clinical Sciences, Queens Medical Centre, Nottingham, United Kingdom.,APHP, Hôpital Saint Louis, Department of Gastroenterology, INSERM UMRS 1160, Paris Diderot, Sorbonne Paris-Cité University, Paris, France.,European Group for Blood and Marrow Transplantation, Paris, France.,Centre for Immunobiology, Blizard Institute, Barts and the London School of Medicine and Dentistry, Queen Mary University of London, London, United Kingdom.,EBMT Clinical Trials, European Group for Blood and Marrow Transplantation, London, United Kingdom.,European Blood & Marrow Transplantation Group, Hematology Department, Careggi University Hospital, Florence, Italy.,Department of Rheumatology, University Hospital, Basel, Switzerland.,Translational Gastroenterology Unit, Oxford University Hospital, Oxford, United Kingdom.,Internal Medicine and Vascular Disease Unit AP-HP Hôpital Saint-Louis, Paris 7 University, France. | 123452526272829 | NA | NA | 29 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.1671 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Antiplatelet Therapy Duration Following Bare Metal or Drug-Eluting Coronary Stents | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “The Christ Hospital Heart and Vascular Center, Cincinnati, Ohio2Lindner Research Center, Cincinnati, Ohio”),list(name = “Harvard Clinical Research Institute, Boston, Massachusetts4Massachusetts General Hospital, Boston”),list(name = “Harvard Clinical Research Institute, Boston, Massachusetts5Boston University, Boston, Massachusetts”),list(name = “Harvard Clinical Research Institute, Boston, Massachusetts”),list(name = “Harvard Clinical Research Institute, Boston, Massachusetts6Beth Israel Deaconess Medical Center, Boston, Massachusetts”),list(name = “University Hospitals Case Medical Center, Cleveland, Ohio”),list(name = “Heart Institute, Cluj-Napoca, Romania23Iuliu Ha?ieganu University of Medicine and Pharmacy, Cluj-Napoca, Romania”),list(name = “Jan Pawel II Hospital Krakow, Krakow, Poland”),list(name = “Harvard Clinical Research Institute, Boston, Massachusetts22Brigham and Women’s Hospital, Boston, Massachusetts”) | NA | NA | NA | 20 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.3253 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Outcomes Following Gene Therapy in Patients With Severe Wiskott-Aldrich Syndrome | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Biotherapy Department, Necker Children’s Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France2Biotherapy Clinical Investigation Center, Groupe Hospitalier Universitaire Ouest, Assistance Publique-Hôpitaux de Paris, INSERM, Paris, France3Unité de.,Section of Molecular and Cellular Immunology, University College London Institute of Child Health, London, England6Department of Clinical Immunology, Hospital National Health Service Foundation Trust, London, England.,Biotherapy Department, Necker Children’s Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France2Biotherapy Clinical Investigation Center, Groupe Hospitalier Universitaire Ouest, Assistance Publique-Hôpitaux de Paris, INSERM, Paris, France.,INSERM U951, Unité Mixte de Recherche S951, Molecular Immunology and Innovative Biotherapies, University of Evry, Evry, France8Genethon, Evry, France.,Department of Microbiology, University of Pennsylvania School of Medicine, Philadelphia.,Paris Descartes-Sorbonne Paris Cité University, Imagine Institute, Paris, France11Immunology and Pediatric Hematology Department, Assistance Publique-Hôpitaux de Paris, Paris, France12INSERM Unité Mixte de Recherche 1163, Laboratory of Human Lymphohematop.,Biotherapy Department, Necker Children’s Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France2Biotherapy Clinical Investigation Center, Groupe Hospitalier Universitaire Ouest, Assistance Publique-Hôpitaux de Paris, INSERM, Paris, France10Paris D. | 123452930313233 | NA | NA | 33 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.3703 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | D-Dimer for Pulmonary Embolism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Thrombosis Program, University of Ottawa, Ottawa, Ontario, Canada2Division of Hematology, University of Ottawa, Ottawa, Ontario, Canada3Department of Medicine, University of Ottawa, Ottawa, Ontario, Canada4Clinical Epidemiology Unit, Ottawa Health Researc”),list(name = “Division of Angiology and Hemostasis, Geneva University Hospital, Geneva, Switzerland”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.3780 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Retrievable Inferior Vena Cava Filter Plus Anticoagulation vs Anticoagulation Alone on Risk of Recurrent Pulmonary Embolism | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Médecine Vasculaire et Thérapeutique, Centre Hospitalier Universitaire de Saint-Etienne, France2Université Jean Monnet, Groupe d’Investigation et de Recherche Clinique sur la Thrombose, Saint-Etienne, France3Unité de Pharmacologie Clinique, Cen.,Université Jean Monnet, Groupe d’Investigation et de Recherche Clinique sur la Thrombose, Saint-Etienne, France3Unité de Pharmacologie Clinique, Centre Hospitalier Universitaire de Saint-Etienne, France.,Faculté de Médecine, Université Paris Descartes, Sorbonne Paris Cité, France5Service de Radiologie Interventionnelle, Hôpital Européen Georges Pompidou, Assistance Publique-Hôpitaux de Paris, France.,Département de Cardiologie, Centre Hospitalier Universitaire de Grenoble, La Tronche, France.,Département de Médecine Interne et Pneumologie, Hôpital La Cavale Blanche, Université De Bretagne occidentale, Brest, France.,Unité Mixte de Recherche/Centre National de la Recherche Scientifique, University of Lyon, France.,Centre Hospitalier Universitaire de Saint-Etienne, Hôpital Nord, Service Médecine Vasculaire et Thérapeutique, France.,Service de Radiologie, Centre Hospitalier Universitaire de Saint-Etienne, France 26Université Jean Monnet, Saint-Etienne, France.,Université Nantes Angers Le Mans, France. | 123451920212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.3860 | 2015 | Medical research | NA | c(“fr”, “au”, “pr”, “je”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Fixed-Dose Combination Therapy With Daclatasvir, Asunaprevir, and Beclabuvir for Noncirrhotic Patients With HCV Genotype 1 Infection | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Texas Liver Institute, University of Texas Health Science Center, San Antonio.,Monash Health and Monash University, Melbourne, Australia.,Fremantle Hepatitis Services, School of Medicine and Pharmacology, University of Western Australia, Fremantle, Australia.,Medical Associates Research Group, San Diego, California.,Royal Adelaide Hospital, Adelaide, Australia.,Bristol-Myers Squibb, Wallingford, Connecticut.,Bristol-Myers Squibb, Princeton, New Jersey. | 123452324252627 | NA | NA | 27 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.3868 | 2015 | Medical research | NA | c(“us”, “fr”, “au”, “ge”, “je”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Daclatasvir in Combination With Asunaprevir and Beclabuvir for Hepatitis C Virus Genotype 1 Infection With Compensated Cirrhosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Duke Clinical Research Institute, Duke University, Durham, North Carolina.,Texas Liver Institute-University of Texas Health Science Center, San Antonio.,Quest Clinical Research, San Francisco, California.,University of Colorado School of Medicine, Denver.,Kirby Institute, University of New South Wales, Kensington, New South Wales, Australia6St Vincent’s Hospital, Sydney, New South Wales, Australia.,Bristol-Myers Squibb, Princeton, New Jersey.,Bristol-Myers Squibb, Wallingford, Connecticut. | 123452122232425 | NA | NA | 25 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.410 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Fenoldopam and Acute Kidney Injury | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Anesthesiology and Critical Care and Burn Unit, AP-HP, St Louis Lariboisière, Paris, France”),list(name = “Medical-Surgical ICU, Hôpital Nord, St Priest en Jarez, Saint-Etienne, France”),list(name = “Division of Intensive Care and Emergency Medicine, Medical University of Innsbruck, Innsbruck, Austria”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.459 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Oral Eliglustat on Splenomegaly in Patients With Gaucher Disease Type 1 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Yale University School of Medicine, New Haven, Connecticut”),list(name = “Hematology Research Center, Moscow, Russia”),list(name = “Hôpital La Rabta, Tunis, Tunisia”),list(name = “Mount Sinai Hospital, Toronto, Ontario, Canada”),list(name = “Rabin Medical Center, Petach Tikvah, and Sackler Faculty of Medicine, Tel Aviv University, Tel Aviv, Israel”),list(name = “Emory University, Atlanta, Georgia”),list(name = “Hospital de San Jose-Fundacion Universitaria de Ciencias de la Salud San Jose, Bogota, Colombia”),list(name = “Genzyme, Cambridge, Massachusetts”) | NA | NA | NA | 21 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.4668 | 2015 | Medical research | NA | c(“si”, “au”, “gr”, “pl”, “no”, “cn”, “in”, “it”, “se”, “ch”, “ge”, “be”, “fr”, “de”, “gb”, “es”, “pt”, “je”, “dk”, “ro”, “fi”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Prevalence of Cerebral Amyloid Pathology in Persons Without Dementia | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Psychiatry and Neuropsychology, School for Mental Health and Neuroscience, Alzheimer Center Limburg, Maastricht University, Maastricht, the Netherlands.,Department of Neurology and Alzheimer Center, VU University Medical Center, Neuroscience Campus Amsterdam, Amsterdam, the Netherlands3Department of Radiology and Nuclear Medicine, VU University Medical Center, Neuroscience Campus Amsterdam, Amsterdam, the.,Department of Epidemiology and Biostatistics, VU University Medical Center, Amsterdam, the Netherlands.,Department of Neurology and Alzheimer Center, VU University Medical Center, Neuroscience Campus Amsterdam, Amsterdam, the Netherlands.,Department of Psychiatry and Psychotherapy, University Medical Center, Georg-August University, Göttingen, Germany.,Department of Neurology, University of Pennsylvania, Philadelphia.,Alzheimer Center, Wroclaw Medical University, Scinawa, Poland.,Institute of Neuroscience and Physiology, Sahlgrenska Academy at University of Gothenburg, Mölndal, Sweden87UCL Institute of Neurology, Queen Square, London, United Kingdom. | 123451271281291000 | NA | NA | 130 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.4669 | 2015 | Medical research | NA | c(“dk”, “cn”, “se”, “be”, “fr”, “de”, “fi”, “au”, “nl”, “gb”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Prevalence of Amyloid PET Positivity in Dementia Syndromes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Neurology and Alzheimer Center, VU University Medical Center, Amsterdam, the Netherlands 2Department of Radiology and Nuclear Medicine, VU University Medical Center, Amsterdam, the Netherlands 3Memory and Aging Center, University of Californ.,Department of Psychiatry and Neuropsychology, School for Mental Health and Neuroscience, Alzheimer Center Limburg, Maastricht University, the Netherlands.,Memory and Aging Center, University of California, San Francisco4Helen Wills Neuroscience Institute, University of California, Berkeley.,Department of Epidemiology and Biostatistics, VU University Medical Center, Amsterdam, the Netherlands.,Department of Neurology and Alzheimer Center, VU University Medical Center, Amsterdam, the Netherlands 6Department of Epidemiology and Biostatistics, VU University Medical Center, Amsterdam, the Netherlands.,Department of Neurology, Universitat Autònoma de Barcelona, Spain.,Neurobiology Research Unit, Copenhagen University Hospital, Denmark, Germany.,Center for Longevity, The University of Texas at Dallas.,University of Texas Southwestern Medical Center, Dallas39Division of Neuroscience and Medical Research Council Clinical Sciences Centre, Imperial College London, United Kingdom. | 12345545556579 | NA | NA | 57 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.4970 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Computed Tomographic Pulmonary Angiography for Pulmonary Embolism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Thrombosis Program, Division of Hematology, Department of Medicine, University of Ottawa, Ottawa, Ontario, Canada2Clinical Epidemiology Unit, Ottawa Health Research Institute, Ottawa, Ontario, Canada3The Ottawa Hospital, Ottawa, Ontario, Canada4Université”),list(name = “Division of Angiology and Hemostasis, Geneva University Hospital, Geneva, Switzerland.”),list(name = “Thrombosis Program, Division of Hematology, Department of Medicine, University of Ottawa, Ottawa, Ontario, Canada2Clinical Epidemiology Unit, Ottawa Health Research Institute, Ottawa, Ontario, Canada3The Ottawa Hospital, Ottawa, Ontario, Canada”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.5213 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | High-Flow Nasal Oxygen vs Noninvasive Positive Airway Pressure in Hypoxemic Patients After Cardiothoracic Surgery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Réanimation Adulte, Centre Chirurgical Marie Lannelongue, Le Plessis Robinson, France.,Département d’Anesthésie-Réanimation, Centre Hospitalier Universitaire, Besançon, France.,Département d’Anesthésie-Réanimation, Centre Hospitalier Universitaire, Clermont Ferrand, France.,Hôpital St Antoine, Plateforme de recherche Clinique de l’Est Parisien, Paris, France. | 1234589101112 | NA | NA | 12 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.5522 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Presurgery Sedation and Patient Experience—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Service d’Anesthésie Réanimation, Hôpital de la Timone Adulte, Marseille, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.5825 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Sources and Focus of Health Development Assistance, 1990–2014 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Institute for Health Metrics and Evaluation, Seattle, Washington”),list(name = “Information School, University of Washington, Seattle”) | NA | NA | NA | 11 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.6266 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Treating Appendicitis Without Surgery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Deputy Editor, JAMA”),list(name = “Digestive Surgery Department, Jean-Verdier Hospital, Bondy, France”) | NA | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.6734 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association Between Early Screening for Patent Ductus Arteriosus and In-Hospital Mortality Among Extremely Preterm Infants | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Neonatal Medicine, Nantes University Hospital, Nantes, France2Epidémiologie Clinique, Centre d’Investigation Clinique (CIC004), Nantes University Hospital, Nantes, France.,Montpellier Department of Neonatal Medicine, Montpellier University Hospital, Montpellier.,INSERM, U1153, Obstetrical, Perinatal and Pediatric Epidemiology Team, Epidemiology and Statistics Sorbonne Paris Cité Research Center, Paris Descartes University, France.,Pediatric Cardiology Unit, Nantes University Hospital, Nantes, France.,Department of Neonatal Medicine, Lille University Hospital, Lille, France.,INSERM, U1153, METHODS Team, Epidemiology and Statistics Sorbonne Paris Cité Research Center, Paris Descartes University, France.,INSERM, U1153, Obstetrical, Perinatal and Pediatric Epidemiology Team, Epidemiology and Statistics Sorbonne Paris Cité Research Center, Paris Descartes University, France8Centre d’Investivation Clinique (CIC P1419), Cochin Hotel-Dieu Hospital, Assistance. | 12345678910 | NA | NA | 10 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.7008 | 2015 | Medical research | NA | c(“tr”, “it”, “no”, “au”, “fi”, “fr”, “us”, “se”, “ca”, “at”, “jp”, “nl”, “dk”, “de”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Cardiometabolic Multimorbidity With Mortality | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University of Cambridge, Cambridge, England.,Johns Hopkins University, Baltimore, Maryland.,University of Glasgow, Glasgow, Scotland. | 23456878889901 | NA | NA | 90 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.7046 | 2015 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Six Months vs Extended Oral Anticoagulation After a First Episode of Pulmonary Embolism | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Département de Médecine Interne et Pneumologie, Centre Hospitalo-Universitaire de Brest, Université de Bretagne Occidentale, and EA 3878, CIC INSERM 1412, Brest, France2Groupe d’Investigation et de Recherche Clinique sur la Thrombose (GIRC Thrombose).,Groupe d’Investigation et de Recherche Clinique sur la Thrombose (GIRC Thrombose)3Service de Pneumologie, Hôpital Européen Georges Pompidou, AP-HP; Université Paris Descartes, Sorbonne Paris Cité, and INSERM UMR S 970, Paris, France.,Groupe d’Investigation et de Recherche Clinique sur la Thrombose (GIRC Thrombose)4Département de Médecine Vasculaire, Centre Hospitalo-Universitaire de Grenoble, Université de Grenoble 1, Grenoble, France.,Groupe d’Investigation et de Recherche Clinique sur la Thrombose (GIRC Thrombose)5Service de Médecine et Thérapeutique, Unité de Pharmacologie Clinique, Centre Hospitalo-Universitaire de Saint-Etienne, and EA3065, Université Jean Monnet, Saint-Etienne, Fr.,Groupe d’Investigation et de Recherche Clinique sur la Thrombose (GIRC Thrombose)6Service de Médecine Interne, Centre Hospitalo-Universitaire de Rennes, Université de Rennes 1, Rennes, France. | 123452122232425 | NA | NA | 25 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.7517 | 2015 | Medical research | NA | c(“it”, “fi”, “fr”, “gb”, “be”, “pl”) | 0098-7484 | 0098-7484 | JAMA | en | Polypharmacy in the Aging Patient | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Geriatrics and FHU-CARTAGE, CHU de Nancy, Université de Lorraine, Nancy, France.,Centre d’Investigations Cliniques Plurithématique 1433-Inserm CHU de Nancy, Université de Loraine, Nancy, France3INI-CRCT (F-CRIN network), Nancy, France.,Geriatria ed Accettazione Geriatrica d’Urgenza, IRCCS-INRCA, Ancona, Italy.,Department of Internal Medicine and Geriatrics, Jagiellonian University, Cracow, Poland.,Brighton and Sussex Medical School, Brighton, United Kingdom.,Department of Geriatrics, Helsinki University Central Hospital, University of Helsinki, Helsinki, Finland8Institute of Health Sciences/Geriatrics, University of Oulu, Oulu, Finland.,Department of Geriatrics, Ghent University Hospital, Ghent University, Ghent, Belgium. | 12345678 | NA | NA | 8 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.8012 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Inferior Vena Cava Filter and Recurrent Pulmonary Embolism—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Service de Médecine Vasculaire et Thérapeutique, Centre Hospitalier Universitaire de Saint-Etienne, Saint-Etienne, France”),list(name = “Unité de Recherche Clinique, Innovation, Pharmacologie, Centre Hospitalier Universitaire de Saint-Etienne, Saint-Etienne, France”),list(name = “Université Paris Descartes, Sorbonne Paris Cité, Paris, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.88 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Corticosteroids on Treatment Failure Among Hospitalized Patients With Severe Community-Acquired Pneumonia and High Inflammatory Response | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Servei de Pneumologia, Institut Clínic del Torax, Hospital Clínic, Barcelona, Spain2Institut d’Investigacions Biomèdiques August Pi i Sunyer, Barcelona, Spain3Centro de Investigación Biomédica En Red-Enfermedades Respiratorias, Islas Baleares, Spain4Unive”),list(name = “Servei de Pneumologia, Hospital de la Santa Creu i Sant Pau, Barcelona, Spain6Institut d´Investigació Biomèdica Sant Pau, Barcelona, Spain”),list(name = “Servei de Pneumologia, Institut Clínic del Torax, Hospital Clínic, Barcelona, Spain2Institut d’Investigacions Biomèdiques August Pi i Sunyer, Barcelona, Spain3Centro de Investigación Biomédica En Red-Enfermedades Respiratorias, Islas Baleares, Spain”),list(name = “Centro de Investigación Biomédica En Red-Enfermedades Respiratorias, Islas Baleares, Spain7Servicio de Neumologia, Hospital Universitario La Fe, Valencia, Spain”),list(name = “University of Texas Health Science Center, San Antonio10South Texas Veterans Health Care System, Audie L. Murphy Division, San Antonio11VERDICT, San Antonio, Texas”),list(name = “University of Texas Health Science Center, San Antonio10South Texas Veterans Health Care System, Audie L. Murphy Division, San Antonio”),list(name = “Winthrop-University Hospital, Mineola, New York”) | NA | NA | NA | 12 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.8950 | 2015 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association of Electronic Cigarette Use With Initiation of Combustible Tobacco Product Smoking in Early Adolescence | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Preventive Medicine, University of Southern California, Keck School of Medicine, Los Angeles2Department of Psychology, University of Southern California, Los Angeles”),list(name = “Department of Family Medicine and Public Health, University of California–San Diego School of Medicine, La Jolla”),list(name = “Department of Preventive Medicine, University of Southern California, Keck School of Medicine, Los Angeles”),list(name = “Department of Preventive Medicine, University of Southern California, Keck School of Medicine, Los Angeles2Department of Psychology, University of Southern California, Los Angeles4School of Social Work, University of Southern California, Los Angeles”),list(name = “Department of Human Development and Family Studies, Colorado State University, Fort Collins”),list(name = “Department of Psychiatry, University of Pennsylvania, Perelman School of Medicine, Philadelphia”) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.9243 | 2015 | Medical research | NA | c(“dk”, “de”, “ca”, “fr”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Tinzaparin vs Warfarin for Treatment of Acute Venous Thromboembolism in Patients With Active Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, University of British Columbia, Vancouver, Canada.,British Columbia Cancer Agency, Vancouver, Canada.,Department of Vascular Medicine, University Medical Center Groningen, University of Groningen, Groningen, the Netherlands.,INSERM U 970, Hôpital Européen Georges-Pompidou, Université Paris Descartes, Paris, France.,Department Vascular Medicine, Darmstadt Hospital, Darmstadt, Germany.,Center of Thrombosis and Haemostasis, University of Mainz, Mainz, Germany.,LEO Pharma, Ballerup, Denmark.,Taussig Cancer Institute, Cleveland Clinic, Cleveland, Ohio. | 12345678 | NA | NA | 8 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2014.2094 | 2015 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Effect of Psoriasis Severity on Hypertension Control | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, University of Pennsylvania Perelman School of Medicine, Philadelphia2Center for Clinical Epidemiology and Biostatistics, University of Pennsylvania Perelman School of Medicine, Philadelphia”),list(name = “Division of Internal Medicine, Thomas Jefferson University, Philadelphia, Pennsylvania”),list(name = “Section of Inflammation and Cardiometabolic Diseases, National Heart, Lung, and Blood Institute, Bethesda, Maryland”),list(name = “Center for Clinical Epidemiology and Biostatistics, University of Pennsylvania Perelman School of Medicine, Philadelphia5Division of Cardiology, University of Pennsylvania Perelman School of Medicine, Philadelphia”),list(name = “Center for Clinical Epidemiology and Biostatistics, University of Pennsylvania Perelman School of Medicine, Philadelphia”) | NA | NA | NA | 8 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2014.2154 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Posaconazole Treatment of Extensive Skin and Nail Dermatophytosis Due to Autosomal Recessive Deficiency of CARD9 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Assistance Publique Hôpitaux de Paris, Hôpital Saint Louis, Université Paris VII, Sorbonne Paris Cité, Paris, France.,Laboratory of Human Genetics of Infectious Diseases, Necker Branch, Imagine Institute, Paris Descartes University, Sorbonne Paris Cité, Paris, France3Infectious Diseases Unit, Imagine Institute, Paris Descartes University, Necker-Enfants Maladies Hospital.,Laboratory of Human Genetics of Infectious Diseases, Necker Branch, Imagine Institute, Paris Descartes University, Sorbonne Paris Cité, Paris, France. | 12345678 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.2421 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | First-line Treatment of Pemphigus Vulgaris With a Combination of Rituximab and High-Potency Topical Corticosteroids | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Department of Pathology, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France3Université Paris-Est Créteil Val de Marne, Créteil, France.,Université Paris-Est Créteil Val de Marne, Créteil, France4Department of Immunology, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Department of Pharmacy, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Department of Dermatology, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France3Université Paris-Est Créteil Val de Marne, Créteil, France6Institut National de la Santé et de la Recherche Médicale, Centre d’Investigation Clinique. | 12345678 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.2772 | 2015 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | A 2-Year-Old Girl With Skin Fragility | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, Hospital de la Santa Creu i Sant Pau, Universitat Autònoma, Barcelona, Spain”),list(name = “Department of Dermatology, Hospital de la Santa Creu i Sant Pau, Barcelona, Spain”),list(name = “Department of Molecular Medicine, Hospital Universitario de Salamanca, Salamanca, Spain”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2014.2826 | 2015 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Chronic Ulceration and Fibrosis of the Forearm | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, Hospital de la Santa Creu I, Sant Pau, Universitat Autònoma, Barcelona, Spain”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2014.3666 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Life-Threatening Hemorrhaging in Neonatal Ulcerated Congenital Hemangioma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Nantes University Hospital, Nantes, France.,Department of Intensive Care of Neonatology, Nantes University Hospital, Nantes, France.,Department of Dermatology, Brest University Hospital, Brest, France.,Department of Infantile Surgery, Brest University Hospital, Brest, France.,Department of Interventional Radiology and Dermatology, Necker Enfants Malades University Hospital, Paris, France.,Department of Vascular and Plastic Surgery, Nantes University Hospital, Nantes, France.,Department of Histology, Nantes University Hospital, Nantes, France. | 12345910111213 | NA | NA | 13 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.4529 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Fanconi Syndrome Induced by Vemurafenib | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Hôpital Cochin, APHP, University Paris Descartes, Paris, France.,Department of Nephrology, Hôpital Européen Georges Pompidou, University René Descartes, Paris, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.4844 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Stevens-Johnson Syndrome and Toxic Epidermal Necrolysis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Hôpital Intercommunal, Service d’ORL et de Chirurgie Cervico-Faciale, Créteil, France2UPEC Université Paris Est Créteil, Faculté de Médecine, Créteil, France.,Service de Dermatologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpitaux Universitaires Henri-Mondor, Créteil, France.,UPEC Université Paris Est Créteil, Faculté de Médecine, Créteil, France3Service de Dermatologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpitaux Universitaires Henri-Mondor, Créteil, France4Laboratoire d’Investigation Clinique-EA439, France5INSERM.,Service de Dermatologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpitaux Universitaires Henri-Mondor, Créteil, France4Laboratoire d’Investigation Clinique-EA439, France.,Service d’ORL et de Chirurgie Cervico-Faciale, AP-HP, Hôpitaux Universitaires Henri-Mondor, Créteil, France.,Hôpital Intercommunal, Service d’ORL et de Chirurgie Cervico-Faciale, Créteil, France2UPEC Université Paris Est Créteil, Faculté de Médecine, Créteil, France6Service d’ORL et de Chirurgie Cervico-Faciale, AP-HP, Hôpitaux Universitaires Henri-Mondor, Créte.,UPEC Université Paris Est Créteil, Faculté de Médecine, Créteil, France3Service de Dermatologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpitaux Universitaires Henri-Mondor, Créteil, France4Laboratoire d’Investigation Clinique-EA439, France.,UPEC Université Paris Est Créteil, Faculté de Médecine, Créteil, France3Service de Dermatologie, Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpitaux Universitaires Henri-Mondor, Créteil, France5INSERM, Centre d’Investigation Clinique 006, Créteil, Fra.,INSERM, U955, Créteil, France8Service d’ORL et de Chirurgie Cervico-Faciale, AP-HP, Groupe Hospitalier Bicêtre, Kremlin-Bicêtre, France. | 12345678910 | NA | NA | 10 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.4848 | 2015 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Indications and Limitations of Afamelanotide for Treating Vitiligo | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, University Hospital of Nice, Nice, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2014.5580 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Copper Bromide Laser vs Triple-Combination Cream for the Treatment of Melasma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University Hospital of Nice, Nice, France.,Délégation à la Recherche Clinique et à l’Innovation, University Hospital of Nice, Nice, France.,Department of Dermatology, University Hospital of Nice, Nice, France3INSERM U1065, Team 12, C3M, Nice, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.0214 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Enhancement of Customary Dermoscopy Education With Spaced Education e-Learning | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Dermatology Unit, Hospices Civils de Lyon, Lyon, France2Department of Medicine, Claude Bernard-Lyon 1 University, Lyon, France.,Dermatology Unit, Hospices Civils de Lyon, Lyon, France.,Dermatology Unit, Hospices Civils de Lyon, Lyon, France2Department of Medicine, Claude Bernard-Lyon 1 University, Lyon, France3Cancer Research Center of Lyon, Claude Bernard-Lyon 1 University, Lyon, France. | 1234 | NA | NA | 4 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.0251 | 2015 | Medical research | NA | c(“gb”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Stimulator of Interferon Genes–Associated Vasculopathy With Onset in Infancy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, St Eloi Hospital, CHRU Montpellier, Montpellier, France2University of Montpellier I, Montpellier, France.,University of Montpellier I, Montpellier, France3Department of Pediatrics, Arnaud de Villeneuve Hospital, CHRU Montpellier, Montpellier, France.,Institut Imagine, Necker Hospital for Sick Children, Paris, France5Paris Descartes University, Paris, France6INSERM UMR 1163, Paris, France.,Manchester Centre for Genomic Medicine, Institute of Human Development Faculty of Medical and Human Sciences, Manchester Academic Health Sciences Centre, University of Manchester, Manchester, United Kingdom.,Paris Descartes University, Paris, France8Department of Virology, Cochin Hospital AP-HP, Paris, France.,Institut Imagine, Necker Hospital for Sick Children, Paris, France5Paris Descartes University, Paris, France6INSERM UMR 1163, Paris, France7Manchester Centre for Genomic Medicine, Institute of Human Development Faculty of Medical and Human Sciences, Manch.,Department of Dermatology, St Eloi Hospital, CHRU Montpellier, Montpellier, France2University of Montpellier I, Montpellier, France9INSERM U1058, Montpellier, France. | 123456789 | NA | NA | 9 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.0577 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Dermatosis Caused by Blood-SuckingCorythucha Ciliata | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université Paris 13, Bobigny, France2Laboratoire de Parasitologie-Mycologie, Hôpital Avicenne, Assistance Publique-Hôpitaux de Paris (AP-HP), Bobigny, France3UMR 190, Unité des virus émergents, Université Aix-Marseille, Marseille, France.,Université Paris 13, Bobigny, France2Laboratoire de Parasitologie-Mycologie, Hôpital Avicenne, Assistance Publique-Hôpitaux de Paris (AP-HP), Bobigny, France.,Université Paris-Est Créteil Val de Marne, Créteil, France5Service de Dermatologie, AP-HP, Hôpital Henri-Mondor, et Centre d’Investigation Clinique (CIC) 006, Créteil, France.,Université Paris 13, Bobigny, France2Laboratoire de Parasitologie-Mycologie, Hôpital Avicenne, Assistance Publique-Hôpitaux de Paris (AP-HP), Bobigny, France6Institut de Recherche pour le Développement, UMR 216, Mère et enfant face aux infections tropical. | 1234 | NA | NA | 4 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.1357 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy of Vinblastine in Primary Cutaneous Anaplastic Large Cell Lymphoma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Assistance Publique-Hôpitaux de Paris, Saint-Louis Hospital, Paris, France.,Department of Dermatology, Assistance Publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Department of Dermatology, Bordeaux University Hospital, Bordeaux, France.,Department of Dermatology, Caen University Hospital, Caen, France.,Department of Dermatology, Rennes University Hospital, Rennes, France.,Department of Haematology, Assistance Publique-Hôpitaux de Paris, Saint-Louis Hospital, Paris, France.,Department of Dermatology, Assistance Publique-Hôpitaux de Paris, Saint-Louis Hospital, Paris, France7Department of Dermatology, Université Sorbonne, Paris, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.1793 | 2015 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy of Intralesional Botulinum Toxin A for Treatment of Painful Cutaneous Leiomyomas | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Dermatology Branch, Center for Cancer Research, National Cancer Institute, Bethesda, Maryland”),list(name = “Biostatistics and Data Management Section, Office of the Clinical Director, Center for Cancer Research, National Cancer Institute, Bethesda, Maryland”),list(name = “Urologic Surgery and the Urologic Oncology Branch, Center for Cancer Research, National Cancer Institute, Bethesda, Maryland”),list(name = “Laboratory of Pathology, Center for Cancer Research, National Cancer Institute, Bethesda, Maryland”) | NA | NA | NA | 8 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.2234 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Comparative Methods for Improving Transepidermal Methylaminolevulinate Delivery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University Hospital of Nice, Nice, France2Centre de Recherche Clinique, University Hospital of Nice, Nice, France.,Galderma Research & Development, Clinical Unit for Tests and Imaging of Skin, Sophia Antipolis, France.,Department of Dermatology, University Hospital of Nice, Nice, France.,Department of Dermatology, University Hospital of Nice, Nice, France4Institut National de la Santé Et de la Recherche Médicale U1065, Team 12, C3M, University Hospital of Nice, Nice, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.2608 | 2015 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Extended PerinealDermatobia hominisMyiasis in a Traveler Returning From South America | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Pôle Infectieux, Institut Hospitalo-Universitaire Méditerranée Infection, Assistance Publique Hôpitaux de Marseille, Centre Hospitalier Universitaire Nord, Marseille, France.,Pôle Infectieux, Institut Hospitalo-Universitaire Méditerranée Infection, Assistance Publique Hôpitaux de Marseille, Centre Hospitalier Universitaire Nord, Marseille, France2Unité de Recherche sur les Maladies Infectieuses et Tropicales Emergentes, Aix Ma. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamafacial.2015.0376 | 2015 | Medical research | NA | NA | 2168-6076 | 2168-6076,2168-6092 | JAMA Facial Plastic Surgery | en | Alterations in the Elasticity, Pliability, and Viscoelastic Properties of Facial Skin After Injection of Onabotulinum Toxin A | NA | NA | NA | NA | NA | NA | NA | Mary Ann Liebert Inc | Mary Ann Liebert Inc | NA | 0 | NA | NA | 4 | subscription | NA | list(name = “Department of Otolaryngology–Head and Neck Surgery, University of Ottawa, Ottawa, Ontario, Canada”),list(name = c(“Division of Facial Plastic Surgery, University of Toronto, Toronto, Ontario, Canada”, “Department of Otolaryngology–Head and Neck Surgery, University of Toronto, Toronto, Ontario, Canada”)) | NA | NA | NA | 2 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamafacial.2015.46 | 2015 | Medical research | NA | c(“fr”, “ca”) | 2168-6076 | 2168-6076,2168-6092 | JAMA Facial Plastic Surgery | en | Lengthening Temporalis Myoplasty for Facial Paralysis Reanimation | 0 | NA | NA | NA | NA | NA | NA | Mary Ann Liebert Inc | Mary Ann Liebert Inc | NA | 0 | NA | NA | 4 | subscription | NA | Otolaryngology-Head and Neck Surgery Service, Department of Surgery, Maisonneuve-Rosemont Hospital, Montreal, Quebec, Canada.,Department of Maxillofacial Surgery, Caen Regional University Hospital, Caen, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2014.6512 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Tramadol Use and the Risk of Hospitalization for Hypoglycemia in Patients With Noncancer Pain | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Centre for Clinical Epidemiology, Lady Davis Institute, Jewish General Hospital, Montreal, Quebec, Canada2Department of Epidemiology, Biostatistics and Occupational Health, McGill University, Montreal, Quebec, Canada”),list(name = “Centre for Clinical Epidemiology, Lady Davis Institute, Jewish General Hospital, Montreal, Quebec, Canada3Department of Oncology, McGill University, Montreal, Quebec, Canada”),list(name = “Centre for Clinical Epidemiology, Lady Davis Institute, Jewish General Hospital, Montreal, Quebec, Canada”),list(name = “Laboratoire de Pharmacologie Médicale et Clinique, Equipe de Phamacoepidémiologie Institut National de la Santé et de la Recherche Médicale U1027, Faculté de Médecine, Université Paul Sabatier, Toulouse, France5Service de Pharmacologie Clinique, Centre Mi”) | NA | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2014.6924 | 2015 | Medical research | NA | c(“ca”, “fr”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of Cardiovascular Trial Registration With Positive Study Findings | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | George Institute for Global Health, University of Oxford, Oxford, England.,Centre for Statistics in Medicine, Nuffield Department of Orthopaedics, Rheumatology, and Musculoskeletal Sciences, University of Oxford, Oxford, England3Faculty of Medicine, University of Toronto, Toronto, Ontario, Canada.,University of Oxford, Oxford, England.,Centre for Statistics in Medicine, Nuffield Department of Orthopaedics, Rheumatology, and Musculoskeletal Sciences, University of Oxford, Oxford, England5Centre d’Epidémiologie Clinique, Université Paris Descartes, INSERM U1153, Paris, France.,Centre for Statistics in Medicine, Nuffield Department of Orthopaedics, Rheumatology, and Musculoskeletal Sciences, University of Oxford, Oxford, England. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2014.6965 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Current Practices for Lung Cancer Screening | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Public Health, Northern Hospital, Amiens, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.8012 | 2015 | Medical research | NA | c(“fr”, “it”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Treatment With Multiple Blood Pressure Medications, Achieved Blood Pressure, and Mortality in Older Nursing Home Residents | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Geriatrics, University Hospital of Nancy, Nancy, France2Inserm, U1116, Université de Lorraine, Nancy, France3Inserm Clinical Investigation Centre, Université de Lorraine, CHU de Nancy, Nancy, France.,Inserm, U1116, Université de Lorraine, Nancy, France.,Inserm, U1116, Université de Lorraine, Nancy, France3Inserm Clinical Investigation Centre, Université de Lorraine, CHU de Nancy, Nancy, France.,Inserm Clinical Investigation Centre, Université de Lorraine, CHU de Nancy, Nancy, France.,Department of Geriatrics, Toulouse University Hospital, Toulouse, France.,Department of Cardiology, Istituto Auxologico Italiano, Milan, Italy.,Department of Geriatrics, University Hospital of Verona, Verona, Italy.,Department of Geriatrics, University Hospital of Dijon, Dijon, France.,Department of Geriatrics, Broca Hospital, University Paris Descartes, Paris, France.,Department of Geriatrics, University Hospital of Nancy, Nancy, France. | 123457891011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2014.8111 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Creating a List of Low-Value Health Care Activities in Swiss Primary Care | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Ambulatory Care and Community Medicine, University of Lausanne, Lausanne, Switzerland”),list(name = “Division of Primary Care Medicine, Department of Community Medicine, Primary Care, and Emergency Medicine, Geneva University Hospitals, Geneva, Switzerland”),list(name = “Department of General Internal Medicine, Bern University Hospital, Bern, Switzerland”),list(name = “Institute of General Practice and Health Services Research, University of Zurich, Zurich, Switzerland”),list(name = “Department of Medicine, University of Geneva, Geneva, Switzerland”),list(name = “Institute of Primary Health Care, University of Basel, Basel, Switzerland”) | NA | NA | NA | 7 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.0217 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Effect of Primary Care–Based Education on Reassurance in Patients With Acute Low Back Pain | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Neuroscience Research Australia, Sydney, Australia2School of Medical Sciences, University of New South Wales, Sydney, Australia”),list(name = “Neuroscience Research Australia, Sydney, Australia”),list(name = “Institute of Public Health, University of Heidelberg, Heidelberg, Germany”),list(name = “Neuroscience Research Australia, Sydney, Australia4Sansom Institute for Health Research, University of South Australia, Adelaide, South Australia, Australia”) | NA | NA | NA | 6 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.0533 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Leisure Time Physical Activity and Mortality | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Division of Cancer Epidemiology and Genetics, National Cancer Institute, Bethesda, Maryland”),list(name = “American Cancer Society, Atlanta, Georgia”),list(name = “Department of Medical Epidemiology and Biostatistics, Karolinska Institute, Stockholm, Sweden5Department of Community Medicine, University of Tromsø, The Arctic University of Norway, Tromsø6Cancer Registry of Norway, Oslo7Department of Genetic Epidemiolog”),list(name = “Department of Medical Epidemiology and Biostatistics, Karolinska Institute, Stockholm, Sweden8Department of Epidemiology, Harvard School of Public Health, Harvard University, Boston, Massachusetts”),list(name = “Department of Medicine, Harvard Medical School, Harvard University, Boston, Massachusetts”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.2735 | 2015 | Medical research | NA | c(“de”, “jp”, “fr”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Clinical and Radiologic Disease in Smokers With Normal Spirometry | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | National Jewish Health, Denver, Colorado2Department of Epidemiology, Colorado School of Public Health, University of Colorado Denver, Anschutz Medical Campus, Aurora.,National Jewish Health, Denver, Colorado.,Section of Pulmonary and Critical Care Medicine, Medical Service, Veterans Affairs Ann Arbor Healthcare System, Ann Arbor, Michigan4Division of Pulmonary and Critical Care Medicine, Department of Internal Medicine, University of Michigan Health System, An.,Department of Radiology, Columbia University Medical Center, New York, New York.,Division of Pulmonary, Critical Care, and Sleep Medicine, Department of Preventive Medicine and Environmental Health, College of Public Health, University of Kentucky, Lexington.,Pulmonary and Critical Care, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 123452425262728 | NA | NA | 28 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.36 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Insertion Site for Central Venous Catheters | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Medicine, Warren Alpert Medical School of Brown University, Providence, Rhode Island2Division of Infectious Diseases, Department of Epidemiology & Infection Control, Rhode Island Hospital, Providence”),list(name = “Department of Biostatistics & Clinical Research, Côte de Nacre University Hospital Center, Caen, France4Risques Microbiens, Faculté de Médecine, Université de Caen Basse-Normandie, Caen, France”) | NA | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.4630 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Measurement Methodology: What Does Blood Pressure Mean in the PARTAGE Study?—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Geriatrics, University Hospital of Nancy, Nancy, France2Inserm, U1116, Université de Lorraine, Nancy, France3Inserm Clinical Investigation Centre, CIC-P 1433, Université de Lorraine, and CHU de Nancy, France”),list(name = “Inserm, U1116, Université de Lorraine, Nancy, France3Inserm Clinical Investigation Centre, CIC-P 1433, Université de Lorraine, and CHU de Nancy, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2015.4721 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Shared Decision-Making for Cancer Screening | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Amiens University Hospital, 80000 Amiens, France”),list(name = “Women’s Health Academic Centre, St Thomas’ Hospital, London, England”) | NA | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2015.4744 | 2015 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Physical Activity and Successful Aging | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Clinical and Exercise Physiology, Autonomic Nervous System and Exercise Physiology Laboratories, University Hospital of Saint-Etienne, PRES Lyon, Jean Monnet University, Saint-Etienne, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.2704 | 2015 | Medical research | NA | c(“it”, “no”, “ca”, “fr”, “nl”, “jp”, “es”, “se”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Clinical Correlations With Lewy Body Pathology inLRRK2-Related Parkinson Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | The Edmond J. Safra Program in Parkinson’s Disease, University Health Network, Division of Neurology, Department of Medicine, University of Toronto, Toronto, Ontario, Canada.,Department of Laboratory Medicine and Pathobiology, University of Toronto, Toronto, Ontario, Canada.,Mayo Clinic, Jacksonville, Florida.,Sagamihara National Hospital, Kanagawa, Japan.,Sorbonne Université, Pierre and Marie Curie University, Institut du Cerveau et de la Moelle Epinière, Institut National de la Santé et de la Recherche Médicale, Centre national de la recherche scientique, Paris, France.,University of British Columbia, Vancouver, British Columbia, Canada. | 123453031323334 | NA | NA | 34 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.3308 | 2015 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Posterior Cortical Atrophy as an Extreme Phenotype ofGRNMutations | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Sorbonne Universités, Université Pierre et Marie Curie Université Paris 06, Unité Mixte de Recherche (UMR) S 1127, Institut du Cerveau et de la Moelle Épinière (ICM), Paris, France2Institut National de la Santé et de la Recherche Médicale, U 1127, Paris.,Mémoire et Maladie Neurodégénérative, Service de Neurologie, Unité d’Explorations Fonctionnelles, Assistance Publique-Hôpitaux de Paris (AP-HP), Centre Hospitalier Universitaire Avicenne, Bobigny, France.,Laboratoire de Biochimie, AP-HP, Hôpital de la Pitié-Salpêtrière, Paris, France. | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.3921 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Autosomal Recessive Cerebellar Ataxia 3 Due to Homozygote c.132dupA Mutation Within theANO10Gene—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Laboratoire de Génétique de Maladies Rares, Laboratoire de Génétique Moléculaire, Centre Hospitalo–Universitaire de Montpellier, Institut Universitaire de Recherche Clinique, Université de Montpellier, Montpellier, France”),list(name = “Département de Neurologie, Hôpitaux Universitaires de Strasbourg, Hôpital de Hautepierre, Strasbourg, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.4068 | 2015 | Medical research | NA | c(“fr”, “at”, “de”, “be”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Association of Cerebrospinal Fluid Prion Protein Levels and the Distinction Between Alzheimer Disease and Creutzfeldt-Jakob Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Hospices Civils de Lyon, Lyon 1 University, Hôpital des Charpennes, Center for Memory Resources and Research, Villeurbanne, France2Hospices Civils de Lyon, Groupement Hospitalier Est, Department of Biochemistry, Neurochemistry Unit, Lyon, France.,Lyon University, Lyon Neuroscience Research Center, Lyon, France4Centre Hospitalier Universitaire de Limoges, Department of Biochemistry and Molecular Genetics, University of Limoges Medical School, Limoges, France.,Hospices Civils de Lyon, Lyon 1 University, Hôpital Neurologique, Department of Neurology, Bron Cedex, France.,Hospices Civils de Lyon, Groupement Hospitalier Est, Department of Biochemistry, Neurochemistry Unit, Lyon, France6Lyon 1 University, Lyon Neuroscience Research Center, Bron Cedex, France.,AJ Roboscreen GmbH, Leipzig, Germany.,Hospices Civils de Lyon, Groupement Hospitalier Est, Department of Pathology and Neuropathology, Bron Cedex, France.,Hospices Civils de Lyon, Lyon 1 University, Hôpital des Charpennes, Center for Memory Resources and Research, Villeurbanne, France11Hospices Civils de Lyon, Groupement Hospitalier Est, Department of Pathology and Neuropathology, Bron Cedex, France.,Reference Center for Biological Markers of Dementia, Laboratory of Neurochemistry and Behavior, Institute Born-Bunge, University of Antwerp, Antwerp, Belgium.,Institute of Neurology, Medical University of Vienna, and Austrian Reference Center for Human Prion Diseases, Vienna, Austria. | 123451213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2014.4103 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | A Genome-Wide Association Study of Myasthenia Gravis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Neuromuscular Diseases Research Unit, Laboratory of Neurogenetics, National Institute on Aging, National Institutes of Health, Porter Neuroscience Research Center, Bethesda, Maryland”),list(name = “Institute of General Pathology, Catholic University, Rome, Italy”),list(name = “Institute of Neurology, Catholic University, Rome, Italy”),list(name = “Department of Neuroscience, Cisanello Hospital, University of Pisa, Pisa, Italy”),list(name = “Division of Neurology, University of British Columbia, Vancouver, British Columbia, Canada”),list(name = “Department of Neurology, Johns Hopkins School of Medicine, Baltimore, Maryland”),list(name = “Neuromuscular Diseases Research Unit, Laboratory of Neurogenetics, National Institute on Aging, National Institutes of Health, Porter Neuroscience Research Center, Bethesda, Maryland11Department of Neurology, Johns Hopkins School of Medicine, Baltimore, M”) | NA | NA | NA | 55 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2014.4769 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Mutation inCPT1CAssociated With Pure Autosomal Dominant Spastic Paraplegia | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Neurogenetics Branch, National Institute of Neurological Disorders and Stroke, National Institutes of Health, Bethesda, Maryland”),list(name = “Department of Biochemistry and Molecular Biology, Zilkha Neurogenetic Institute, Keck School of Medicine, University of Southern California, Los Angeles”),list(name = “Neuromuscular Diseases Research Section, Laboratory of Neurogenetics, National Institute on Aging, National Institutes of Health, Bethesda, Maryland”),list(name = “Section on Nervous System Development and Plasticity, The Eunice Kennedy Shriver National Institute of Child and Human Development, National Institutes of Health, Bethesda, Maryland”),list(name = “Basic Sciences Department, Facultat de Medicina i Ciències de la Salut, Universitat Internacional de Catalunya, and CIBER Fisiopatología de la Obesidad y la Nutrición (CIBERobn), Sant Cugat del Vallés, Spain”) | NA | NA | NA | 24 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.0248 | 2015 | Medical research | NA | c(“dk”, “cn”, “br”, “de”, “jp”, “au”, “nl”, “es”, “in”, “th”, “mq”, “ar”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Use of Advanced Magnetic Resonance Imaging Techniques in Neuromyelitis Optica Spectrum Disorder | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | ICube (UMR 7357, UdS, Centre National de la Recherche Scientifique), Fédération de médecine translationelle de Strasbourg, Université de Strasbourg, Strasbourg, France2Department of Radiology, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,Centre National de la Recherche Scientifique, Grenoble Image Parole Signal Automatique, Grenoble, France.,CIEM MS Research Center, University of Minas Gerais, Minas Gerais, Brazil.,Department of Neurology, Oxford University Hospital Trust, Oxford, England.,University of Düsseldorf, Düsseldorf, Germany.,University of Michigan, Ann Arbor.,Walton Center, Liverpool, England.,Yale University School of Medicine, New Haven, Connecticut. | 123454647484922 | NA | NA | 49 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.0607 | 2015 | Medical research | NA | c(“fr”, “ca”, “fi”, “se”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Targeting Prodromal Alzheimer Disease With Avagacestat | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Global Clinical Research, Bristol-Myers Squibb, Wallingford, Connecticut.,Department of Neurology, Brown Medical School, Butler Hospital, Providence, Rhode Island.,Department of Psychiatry, School of Medicine, Yale University, New Haven, Connecticut.,Dementia Research Center, Department of Neurology, Cognition, Neuro-imagerie et maladies du Cerveau, University Pierre et Marie Curie Paris 6, Hôpital de la Salpétrière, Paris, France.,Department of Neurobiology, Karolinska Institute, Stockholm, Sweden.,Institute for Neurodegenerative Disorders, New Haven, Connecticut.,University of British Columbia, Vancouver, British Columbia, Canada. | 123452425262728 | NA | NA | 28 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.0749 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Paraneoplastic Neurological Syndromes and Glutamic Acid Decarboxylase Antibodies | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service of Neurology, Hospital Clinic, University of Barcelona, Barcelona, Spain2Neuroimmunology Program, Institut d’Investigació Biomèdica August Pi i Sunyer (IDIBAPS), Barcelona, Spain”),list(name = “Neuroimmunology Program, Institut d’Investigació Biomèdica August Pi i Sunyer (IDIBAPS), Barcelona, Spain3Institute of Neurology, Medical University of Vienna, Vienna, Austria”),list(name = “Neuroimmunology Program, Institut d’Investigació Biomèdica August Pi i Sunyer (IDIBAPS), Barcelona, Spain4Department of Neuroscience, Karolinska Institutet, Stockholm, Sweden”),list(name = “Neuroimmunology Program, Institut d’Investigació Biomèdica August Pi i Sunyer (IDIBAPS), Barcelona, Spain”),list(name = “Service of Neurology, General Hospital Izola, Izola, Slovenia”),list(name = “Service of Neurology, University Hospital Politècnic La Fe, Valencia, Spain”),list(name = “Neuroimmunology Program, Institut d’Investigació Biomèdica August Pi i Sunyer (IDIBAPS), Barcelona, Spain10Institució Catalana de Recerca i Estudis Avançats (ICREA), Barcelona, Spain11Department of Neurology, University of Pennsylvania, Philadelphia”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.0941 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Neuroinflammation in Temporal Lobe Epilepsy Measured Using Positron Emission Tomographic Imaging of Translocator Protein | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Molecular Imaging Branch, National Institute of Mental Health, National Institutes of Health, Bethesda, Maryland”),list(name = “Molecular Imaging Branch, National Institute of Mental Health, National Institutes of Health, Bethesda, Maryland2University of Bordeaux, Aquitaine Institute for Cognitive and Integrative Neuroscience, National Centre for Scientific Research, Talence, Fran”),list(name = “Clinical Epilepsy Section, National Institute of Neurological Disorders and Stroke, National Institutes of Health, Bethesda, Maryland”),list(name = “Department of Radiology, University of Turku, Turku, Finland”) | NA | NA | NA | 16 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.1715 | 2015 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Clinical Spectrum of Encephalitis Associated With Antibodies Against the α-Amino-3-Hydroxy-5-Methyl-4-Isoxazolepropionic Acid Receptor | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Claude Bernard Lyon 1, Lyon, France2Institut National de la Santé et de la Recherche Médicale (INSERM) et Centre National de la Recherche Scientifique (CNRS), Equipe Neuro-oncologie et Neuro-inflammation, Centre de Recherche en Neurosciences de.,Faculté de Médecine, Université Paris-Est Créteil Val de Marne, Créteil, France5Service de Neurologie, Centre Hospitalier Universitaire Henri Mondor, Créteil, France.,Centre National de Référence pour les Syndromes Neurologiques Paranéoplasiques, Lyon, France.,Département de Neurologie, Groupe Hospitalier Pitié-Salpêtrière, Paris, France.,Centre National de Référence pour les Syndromes Neurologiques Paranéoplasiques, Lyon, France9Département de Neurologie, Groupe Hospitalier Pitié-Salpêtrière, Paris, France.,Centre National de Référence pour les Syndromes Neurologiques Paranéoplasiques, Lyon, France10Service de Neurologie, Centre Hospitalier Universitaire de Saint-Étienne, Hôpital Bellevue, Saint-Étienne, France. | 123451011121314 | NA | NA | 14 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2015.1855 | 2015 | Medical research | NA | c(“fr”, “be”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | A 22-Year Follow-up Study of Long-term Cardiac Outcome and Predictors of Survival in Friedreich Ataxia | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Cardiology, Assistance Publique-Hôpitaux de Paris, Groupe Hospitalier Pitié-Salpêtrière Charles-Foix, Paris, France.,Department of Genetics and Cytogenetics, Assistance Publique-Hôpitaux de Paris, Groupe Hospitalier Pitié-Salpêtrière Charles-Foix, Paris, France3Institut du Cerveau et de la Moelle Epinière, Sorbonne Universités, Université Pierre et Marie Curie, Universi.,Department of Genetics and Cytogenetics, Assistance Publique-Hôpitaux de Paris, Groupe Hospitalier Pitié-Salpêtrière Charles-Foix, Paris, France.,Department of Neurology, Université Libre de Bruxelles, Hôpital Erasme, Brussels, Belgium.,Department of Cardiology, Assistance Publique-Hôpitaux de Paris, Groupe Hospitalier Pitié-Salpêtrière Charles-Foix, Paris, France4Sorbonne Universités, Université Pierre et Marie Curie, University Paris 06, UMR 1166, INSERM, Paris, France6Institute for Ca.,Sorbonne Universités, Université Pierre et Marie Curie, University Paris 06, UMR 1136, Institut Pierre Louis d’Epidémiologie et de Santé Publique, Paris, France8INSERM, UMR 1136, Institut Pierre Louis d’Epidémiologie et de Santé Publique, Paris, France9Bi. | 123457891011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2015.2115 | 2015 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Vitamin D Status and Rates of Cognitive Decline in a Multiethnic Cohort of Older Adults | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Nutritional Sciences, Rutgers University, New Brunswick, New Jersey2Department of Medical Pathology and Laboratory Medicine, University of California, Davis”),list(name = “Division of Biostatistics, Department of Public Health Sciences, University of California, Davis”),list(name = “Department of Medical Pathology and Laboratory Medicine, University of California, Davis”),list(name = “Department of Neurology, University of California, Davis”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2015.2128 | 2015 | Social sciences | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Acceptance of Lesbian, Gay, Bisexual, and Transgender People | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, Poitiers University Hospital, Poitiers, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2015.2268 | 2015 | Medical research | NA | c(“je”, “it”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Preladenant as an Adjunctive Therapy With Levodopa in Parkinson Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Parkinson’s Disease and Movement Disorders Center, University of South Florida, National Parkinson Foundation Center of Excellence, Tampa.,Institute of Neurology, L’Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele, Rome, Italy.,Clinical Investigation Center, Institut National de la Santé et de la Récherche Médicale, Toulouse University, Toulouse, France.,Merck & Co, Inc, Kenilworth, New Jersey. | 12345678910 | NA | NA | 10 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaoncol.2014.257 | 2015 | Medical research | NA | c(“it”, “es”, “fr”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | Association ofEGFRL858R Mutation in Circulating Free DNA With Survival in the EURTAC Trial | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Instituto Oncológico Dr Rosell, Quiron-Dexeus University Hospital, Barcelona, Spain.,Laboratory of Molecular Biology, Pangaea Biotech, Barcelona, Spain.,Catalan Institute of Oncology, Hospital Germans Trias i Pujol, Badalona, Spain.,Service de Pathologie Respiratoire et d’Allergologie, Hôpital du Cluzeau, Limoges, France.,Instituto Oncológico Dr Rosell, Quiron-Dexeus University Hospital, Barcelona, Spain3Catalan Institute of Oncology, Hospital Germans Trias i Pujol, Badalona, Spain22MORe Foundation, Barcelona, Spain23Cancer Therapeutic Innovation Group, New York, New York. | 123452728293031 | NA | NA | 31 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2014.297 | 2015 | Medical research | NA | c(“cl”, “fr”, “us”, “it”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | Patient Perception of Physician Compassion After a More Optimistic vs a Less Optimistic Message | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Palliative Care and Rehabilitation Medicine, University of Texas MD Anderson Cancer Center, Houston.,Department of Palliative Care and Rehabilitation Medicine, University of Texas MD Anderson Cancer Center, Houston2Clinique La Chavannerie, Groupe Orpea, Chaponost, France3Laboratoire EA 4129, Santé-Individu-Société, Université Lyon 1, Lyon, France.,Programa Medicina Paliativa, Departamento Medicina Interna, Facultad de Medicina, Pontificia Universidad Catolica de Chile, Santiago, Chile.,Palliative Care Unit-IRCCS Arcispedale Santa Maria Nuova, Reggio Emilia, Italy.,Department of Biostatistics, University of Texas MD Anderson Cancer Center, Houston.,Research Medical Library, University of Texas MD Anderson Cancer Center, Houston. | 12345910111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.0493 | 2015 | Medical research | NA | NA | 2374-2437 | 2374-2437 | JAMA Oncology | en | Association BetweenNRASandBRAFMutational Status and Melanoma-Specific Survival Among Patients With Higher-Risk Primary Melanoma | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, University of North Carolina, Chapel Hill2Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill”),list(name = “Department of Pathology and Laboratory Medicine, University of North Carolina, Chapel Hill”),list(name = “Sydney School of Public Health, The University of Sydney, Sydney, New South Wales, Australia”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill12Department of Surgery, University of North Carolina, Chapel Hill”),list(name = “Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York, New York”),list(name = “Division of Epidemiology, Department of Medicine, University of New Mexico, Albuquerque”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill18Department of Epidemiology, University of North Carolina, Chapel Hill”) | NA | NA | NA | 29 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.0735 | 2015 | Medical research | NA | c(“fi”, “in”, “vn”, “au”, “jp”, “no”, “cn”, “de”, “nz”, “pt”, “mx”, “ae”, “ng”, “my”, “it”, “ca”, “ge”, “nl”, “co”, “za”, “bh”, “es”, “se”, “br”, “et”, “fr”, “ph”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | The Global Burden of Cancer 2013 | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Hematology, Department of Medicine, University of Washington, Seattle2Institute for Health Metrics and Evaluation, University of Washington, Seattle.,Institute for Health Metrics and Evaluation, University of Washington, Seattle.,Institute for Health Metrics and Evaluation, University of Washington, Seattle3Gastrointestinal and Liver Disease Research Center, Iran University of Medical Sciences, Tehran, Iran. | 23456134135144100 | NA | NA | 135 | 0 | 3 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.0736 | 2015 | Medical research | NA | NA | 2374-2437 | 2374-2437 | JAMA Oncology | en | Vemurafenib Use in an Infant for High-Risk Langerhans Cell Histiocytosis | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Pediatric Hematology and Oncology, Trousseau Hospital, Assistance Publique–Hôpitaux de Paris (APHP), Paris, France Trousseau Hospital, Paris, France”),list(name = “Department of Pediatric Hematology and Oncology, Felix Guyon Hospital, Saint-Denis Réunion, France”),list(name = “Pathology Department, Ambroise Paré Hospital, APHP, Boulogne, France”),list(name = “Department of Pharmacology and Toxicology, Raymond Poincaré Hospital, APHP, Garches, France”),list(name = “Department of Internal Medicine & French Reference Center for Rare Auto-immune & Systemic Diseases, Pitié-Salpêtrière Hospital, APHP, Paris, France”) | NA | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | hybrid | 1 | 1 | 1 |
| 10.1001/jamaoncol.2015.0830 | 2015 | Medical research | NA | c(“de”, “fr”, “gb”, “au”, “es”, “be”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | Tumor-Infiltrating Lymphocytes and Associations With Pathological Complete Response and Event-Free Survival in HER2-Positive Early-Stage Breast Cancer Treated With Lapatinib and Trastuzumab | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Breast Cancer Translational Research Laboratory, Institut Jules Bordet, Université Libre de Bruxelles, Brussels, Belgium2Department of Pathology, Gasthuis Zusters Antwerpen Hospitals, Antwerp, Belgium.,Institute of Pathology, Charité-Universitätsmedizin, Berlin, Germany4German Cancer Consortium, Berlin, Germany.,Frontier Science (Scotland) Ltd, Grampian View, Kincraig, Kingussie, United Kingdom.,Division of Clinical Medicine and Research, Peter MacCallum Cancer Centre, University of Melbourne, Melbourne, Victoria, Australia.,Val d’Hebron Institute of Oncology, Barcelona, Spain.,Centre de Recherche en Epidémiologie et Santé des Populations, INSERM U1018, Service de Biostatistique et d’Epidémiologie, Gustave Roussy, Université Paris-Sud, Villejuif, France.,Breast Cancer Translational Research Laboratory, Institut Jules Bordet, Université Libre de Bruxelles, Brussels, Belgium. | 12346131415165 | NA | NA | 16 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.1590 | 2015 | Medical research | NA | c(“it”, “lt”, “fr”, “hu”, “es”, “us”, “pl”, “ro”, “il”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | Safety and Efficacy of Fedratinib in Patients With Primary or Secondary Myelofibrosis | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Medicine, Mayo Clinic, Rochester, Minnesota.,Guy’s and St Thomas’ NHS Foundation Trust, St Thomas’ Hospital, London, England.,University of Texas MD Anderson Cancer Center, Houston.,Hospital Clinic, IDIBAPS University of Barcelona, Barcelona, Spain.,Division of Hematology-Oncology, Mayo Clinic, Scottsdale, Arizona.,University Hospital Ospedale di Circolo e Fondazione Macchi, Varese, Italy.,Sanofi Oncology, Cambridge, Massachusetts. | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.2283 | 2015 | Biology (fond.) | NA | NA | 2374-2437 | 2374-2437 | JAMA Oncology | en | Progesterone and Synthetic Progestin Controversies | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Unité de Gynécologie Endocrinienne, Université Paris Descartes, Hôpital Port Royal, Paris, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamaoncol.2015.2413 | 2015 | Medical research | NA | c(“de”, “be”, “il”, “it”, “no”, “nl”, “fr”) | 2374-2437 | 2374-2437 | JAMA Oncology | en | Breast Cancer Diagnosed During Pregnancy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | German Breast Group, Neu-Isenburg, Germany2Sana Klinimum, Offenbach, Germany.,University Hospital Jena, Jena, Germany.,European Institute of Oncology, Milano, Italy.,Chaim Sheba Medical Center, Ramat Gan, Israel.,University of Aachen, Aachen, Germany.,University Hospital Gasthuisberg, Leuven, Belgium.,Radboud University Medical Center, Nijmegen, the Netherlands.,Trousseau Hospital, Paris, France.,Leuven Cancer Institute, Leuven, Belgium. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamaoncol.2015.2969 | 2015 | Medical research | NA | NA | 2374-2437 | 2374-2437 | JAMA Oncology | en | Resource Utilization and Safety of Outpatient Management Following Intensive Induction or Salvage Chemotherapy for Acute Myeloid Leukemia or Myelodysplastic Syndrome | 1 | 4799.435 | openAPC_estimation_issn | NA | NA | 4799.435 | 11 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Hematology/Oncology Fellowship Program, University of Washington, Seattle2Clinical Research Division, Fred Hutchinson Cancer Research Center, Seattle, Washington3now with Blue Ridge Cancer Care, Department of Medicine, Virginia Tech Carilion School of Med”),list(name = “Public Health Sciences Division, Fred Hutchinson Cancer Research Center, Seattle, Washington”),list(name = “Clinical Research Division, Fred Hutchinson Cancer Research Center, Seattle, Washington”),list(name = “Seattle Cancer Care Alliance, Seattle, Washington”),list(name = “Division of Hematology, Department of Medicine, University of Washington, Seattle”),list(name = “Clinical Research Division, Fred Hutchinson Cancer Research Center, Seattle, Washington6Division of Hematology, Department of Medicine, University of Washington, Seattle”),list(name = “Division of Allergy and Infectious Diseases, Department of Medicine, University of Washington, Seattle”),list(name = “Clinical Research Division, Fred Hutchinson Cancer Research Center, Seattle, Washington6Division of Hematology, Department of Medicine, University of Washington, Seattle8Department of Epidemiology, University of Washington, Seattle”) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2014.4453 | 2015 | Medical research | NA | fr | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Robotically Assisted Amniotic Membrane Transplant Surgery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Ophthalmology, Strasbourg University Hospital, Fédération de Médecine Translationnelle de Strasbourg, University of Strasbourg, Strasbourg, France2Institut Hospitalo-Universitaire, Institute of Image-Guided Surgery, University of Strasbourg.,Department of Ophthalmology, Strasbourg University Hospital, Fédération de Médecine Translationnelle de Strasbourg, University of Strasbourg, Strasbourg, France.,Institut Hospitalo-Universitaire, Institute of Image-Guided Surgery, University of Strasbourg, Fédération de Médecine Translationnelle de Strasbourg, Strasbourg, France3Department of Digestive Surgery, Strasbourg University Hospital, Fédération de Médecin. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaophthalmol.2014.4755 | 2015 | Medical research | NA | c(“tr”, “be”, “de”, “es”, “fr”, “ch”, “nl”) | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Treatment Strategies in Primary Vitreoretinal Lymphoma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Ophthalmology, University Medical Centre Utrecht, Utrecht, the Netherlands.,Department of Neuro-Oncology, Erasmus Medical Centre, Rotterdam, the Netherlands.,Department of Ophthalmology, Pitié-Salpêtrière Hospital, Paris, France.,Department of Ophthalmology, Tübingen University Hospital, Tübingen, Germany.,Rotterdam Eye Hospital, Rotterdam, the Netherlands.,Department of Ophthalmology, University Medical Centre, Maastricht, the Netherlands.,Department of Ophthalmology, Amsterdam Medical Centre, Amsterdam, the Netherlands.,Department of Hematology, University Medical Centre Utrecht, Utrecht, the Netherlands.,Department of Ophthalmology, Erasmus Medical Centre, Rotterdam, the Netherlands. | 123452526272829 | NA | NA | 29 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaophthalmol.2015.0460 | 2015 | Medical research | NA | NA | 2168-6165 | 2168-6165 | JAMA Ophthalmology | en | Validated System for Centralized Grading of Retinopathy of Prematurity | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Ophthalmology, University of Pennsylvania, Philadelphia”),list(name = “Department of Ophthalmology, University of Pennsylvania, Philadelphia2Division of Pediatric Ophthalmology, The Children’s Hospital of Philadelphia, Philadelphia, Pennsylvania”),list(name = “Dean McGee Eye Institute, University of Oklahoma, Oklahoma City”),list(name = “Department of Ophthalmology, University of Calgary, Calgary, Alberta, Canada”),list(name = “Department of Ophthalmology, Emory University, Atlanta, Georgia”) | NA | NA | NA | 11 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
import_manips(2016)
Temps d’exécution de l’import des données : 1.75 secs.
Dimensions du jeu de données : 129322 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/jama.2015.13969 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Safety of Propranolol Therapy for Severe Infantile Hemangioma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Dermatologie, CIC P 1401 et Inserm U1035-CHU et Université de Bordeaux, Bordeaux, France.,Laboratoire Pierre Fabre Dermatologie, Lavaur, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.17145 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Differences in Institutional Support by Sex | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “INSEAD, Fontainebleau, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.17821 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Lung Volume Reduction Coil Treatment vs Usual Care in Patients With Severe Emphysema | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | hal-01784298 | 1 | NA | NA | 4 | hybrid | NA | Service de Pneumologie, INSERM U903, Hôpital Universitaire de Reims, Reims, France.,Service de Pneumologie, Hôpital Universitaire Bichat, Paris, France.,Service d’Oncologie Thoracique, Maladies de la Plèvre, Pneumologie Interventionnelle, Hôpital Universitaire de Marseille, Marseille, France.,Département de Pneumologie et Addictologie, PhyMedExp, Inserm U1046, CNRS UMR, Hôpital Universitaire de Montpellier, Montpellier, France.,Service de Pneumologie, Hôpital Universitaire de Saint-Étienne, Saint-Étienne, France.,URC Eco IdF, Unité de Recherche Clinique en Économie de la Santé d’Ile de France, AP-HP Paris, Paris, France.,Département de Méthodologie, Pôle Recherche-Innovations, Hôpital Universitaire de Reims, Reims, France.,Service de Pneumologie, IRCAN, UMR CNRS 7284/Inserm U1081, Team 3, Hôpital Universitaire de Nice Sophia Antipolis, Nice, France. | 123451617181920 | NA | NA | 20 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2015.18202 | 2016 | Medical research | NA | c(“il”, “se”, “nz”, “at”, “jp”, “fr”, “ca”, “no”, “de”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Multinational Assessment of Accuracy of Equations for Predicting Risk of Kidney Failure | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Medicine, Seven Oaks General Hospital, University of Manitoba, Winnipeg, Canada2Department of Community Health Sciences, Seven Oaks General Hospital, University of Manitoba, Winnipeg, Canada.,Johns Hopkins Medical Institutions, Baltimore, Maryland.,Division of Nephrology at Tufts Medical Center, Boston, Massachusetts.,Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland.,Johns Hopkins Medical Institutions, Baltimore, Maryland5Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland.,CESP, INSERM, Villejuif, France29Université Paris-Saclay, Université Paris-Sud, UVSQ, Villejuif, France.,Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland30The George Institute for Global Health, Nuffield Department of Population Health, University of Oxford, Oxford, England31The George Institute for Global Health, University of Sydney, Sy.,Dialysis Unit, University Hospital of the Ryukyus, Nishihara, Okinawa, Japan. | 123452526272829 | NA | NA | 29 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.18604 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Family Perspectives on Aggressive Cancer Care Near the End of Life | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medical Oncology, Dana-Farber Cancer Institute, Harvard Medical School, Boston, Massachusetts”),list(name = “Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts3Division of General Medicine, Brigham and Women’s Hospital, Boston, Massachusetts”),list(name = “Institute for Healthcare Policy and Innovation, Division of General Medicine, University of Michigan, Ann Arbor5Department of Health Management and Policy, School of Public Health, University of Michigan, Ann Arbor6Gerald R. Ford School of Public Policy,”),list(name = “Department of Epidemiology, College of Public Health, University of Iowa, Iowa City”),list(name = “Rand Corporation, Santa Monica, California9Division of General Internal Medicine, University of California, Los Angeles”),list(name = “Division of Geriatrics, Department of Medicine, University of California, San Francisco”),list(name = “Institute for Clinical Evaluative Sciences, Toronto, Ontario, Canada”),list(name = “Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2015.19330 | 2016 | Medical research | NA | c(“se”, “je”, “fr”, “be”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Subcutaneous Dupilumab on Nasal Polyp Burden in Patients With Chronic Sinusitis and Nasal Polyposis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Upper Airway Research Laboratory, Department of Otorhinolaryngology, Ghent University Hospital, Ghent, Belgium2Clintec, Karolinska Institute, Stockholm, Sweden.,Research and Development, Sanofi, Chilly Mazarin, France.,University of Chicago, Chicago, Illinois.,Hospital Clinic, Institut d’Investigacions Biomèdiques August Pi i Sunyer, Barcelona, Spain.,University of Pittsburgh Medical Center, Pittsburgh, Pennsylvania.,Regeneron Pharmaceuticals Inc, Tarrytown, New York.,Immunology and Inflammation Development Franchise, Sanofi Research and Development, Cambridge, Massachusetts. | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.0019 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Acetazolamide vs Placebo on Duration of Invasive Mechanical Ventilation Among Patients With Chronic Obstructive Pulmonary Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | European Georges Pompidou Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France.,Nouvel Hôpital Civil, Medical Intensive Care Unit, Hôpitaux Universitaires de Strasbourg and EA 7293, Fédération de Médecine Translationnelle de Strasbourg, Strasbourg University, Strasbourg, France.,André Mignot Hospital, Medico-Surgical Intensive Care Unit, Le Chesnay, France.,Limoges University Hospital, Medical Intensive Care Unit, Limoges, France.,Rennes University Hospital, Medical Intensive Care Unit, Rennes, France.,Cochin Hospital, Medical Intensive Care Unit, Paris, France. | 123451617181920 | NA | NA | 20 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.0287 | 2016 | Medical research | NA | c(“de”, “gb”, “fr”, “ge”, “nl”, “au”, “be”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | The Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3) | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Bloomsbury Institute of Intensive Care Medicine, University College London, London, United Kingdom.,Hofstra-Northwell School of Medicine, Feinstein Institute for Medical Research, New Hyde Park, New York.,Department of Critical Care and Emergency Medicine, University of Pittsburgh School of Medicine, Pittsburgh, Pennsylvania.,Department of Critical Care Medicine, Guy’s and St Thomas’ NHS Foundation Trust, London, United Kingdom.,Department of Critical Care Medicine, University of Versailles, France.,Infectious Disease Section, Division of Pulmonary and Critical Care Medicine, Brown University School of Medicine, Providence, Rhode Island.,Trauma, Emergency & Critical Care Program, Sunnybrook Health Sciences Centre, Toronto, Ontario, Canada16Interdepartmental Division of Critical Care, University of Toronto.,Department of Infectious Diseases, Academisch Medisch Centrum, Amsterdam, the Netherlands.,Department of Intensive Care, Erasme University Hospital, Brussels, Belgium.,Department of Critical Care Medicine, University of Pittsburgh and UPMC Health System, Pittsburgh, Pennsylvania20Associate Editor, JAMA. | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.0288 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Assessment of Clinical Criteria for Sepsis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Critical Care Medicine, University of Pittsburgh School of Medicine, Pittsburgh, Pennsylvania2Clinical Research, Investigation, and Systems Modeling of Acute Illness (CRISMA) Center, Pittsburgh, Pennsylvania”),list(name = “Division of Research, Kaiser Permanente, Oakland, California”),list(name = “Department of Internal Medicine, University of Michigan, Ann Arbor5Veterans Affairs Center for Clinical Management Research, Ann Arbor, Michigan6Australia and New Zealand Intensive Care Research Centre, Department of Epidemiology and Preventive Medicine,”),list(name = “Center for Clinical Studies, Jena University Hospital, Jena, Germany”),list(name = “Division of General Internal Medicine, University of Washington, Seattle”),list(name = “Critical Care Medicine, Guy’s and St Thomas’ NHS Foundation Trust, London, England”),list(name = “Bloomsbury Institute of Intensive Care Medicine, University College London, London, England”),list(name = “Feinstein Institute for Medical Research, Hofstra–North Shore–Long Island Jewish School of Medicine, Steven and Alexandra Cohen Children’s Medical Center, New Hyde Park, New York”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.0289 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Developing a New Definition and Assessing New Clinical Criteria for Septic Shock | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Division of Asthma, Allergy, and Lung Biology, King’s College London, London, United Kingdom2Department of Critical Care Medicine, Guy’s and St Thomas’ NHS Foundation Trust, London SE17EH, United Kingdom”),list(name = “The Ohio State University College of Medicine, Department of Biomedical Informatics, Center for Biostatistics, Columbus”),list(name = “Rhode Island Hospital, Brown University School of Medicine, Providence, Rhode Island”),list(name = “Clinical Research, Investigation, and Systems Modeling of Acute Illness Center, Department of Critical Care and Emergency Medicine, University of Pittsburgh, Pittsburgh, Pennsylvania”),list(name = “Division of Research, Kaiser Permanente, Oakland, California”),list(name = “Department of Pediatrics, Hofstra-North Shore-Long Island Jewish-Hofstra School of Medicine, Steven and Alexandra Cohen Children’s Medical Center, New Hyde Park, New York8Department of Molecular Medicine, Hofstra-North Shore-Long Island Jewish-Hofstra Sch”),list(name = “Clinical Research, Investigation, and Systems Modeling of Acute Illness Center, Department of Critical Care and Emergency Medicine, University of Pittsburgh, Pittsburgh, Pennsylvania10Associate Editor, JAMA”),list(name = “Interdepartmental Division of Critical Care Medicine, University of Toronto, Toronto, Ontario, Canada12Sunnybrook Health Sciences Centre, Toronto, Ontario, Canada”),list(name = “Bloomsbury Institute of Intensive Care Medicine, University College London, London, United Kingdom”) | NA | NA | NA | 10 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.0291 | 2016 | Medical research | NA | c(“es”, “se”, “au”, “it”, “fr”, “ca”, “de”, “ie”) | 0098-7484 | 0098-7484 | JAMA | en | Epidemiology, Patterns of Care, and Mortality for Patients With Acute Respiratory Distress Syndrome in Intensive Care Units in 50 Countries | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | School of Medicine and Surgery, University of Milan-Bicocca, Monza, Italy,Department of Emergency and Intensive Care, San Gerardo Hospital, Monza, Italy,Departments of Anesthesia and Critical Care Medicine, Keenan Research Centre for Biomedical Science, St Michael’s Hospital,Departments of Anesthesia, Physiology and Interdepartmental division of Critical Care Medicine, University of Toronto, Canada,AP-HP, Hôpital Tenon, Unité de Réanimation médico-chirurgicale, Pôle Thorax Voies aériennes, Groupe hospitalier des Hôpitaux Universitaires de l’Est Parisien, Paris, France,Division of Pulmonary and Critical Care Unit, Department of Medicine, Massachusetts General Hospital, Harvard Medical School, Boston,Department of Anesthesiology and Intensive Care Medicine, University of Leipzig, Liebigstr. 20, D-04103 Leipzig, Germany,Keenan Research Center at the Li Ka Shing Knowledge Institute of St Michael’s Hospital, the Interdepartmental Division of Critical Care Medicine, and the Department of Medicine, University of Toronto, Toronto, Canada,Istituto di Anestesia e Rianimazione, Università degli Studi di Milano, Ospedale Maggiore, Istituto di Ricovero e Cura a Carattere Scientifico, Milan, Italy | 1231314151617 | NA | NA | 17 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.0674 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Noninvasive Ventilation and Outcomes Among Immunocompromised Patients | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “CHU de Poitiers, Medical Intensive Care Unit, Poitiers, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.0692 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Noninvasive Ventilation and Outcomes Among Immunocompromised Patients—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Saint-Louis University Hospital, Paris, France”),list(name = “IPC, Lyon, France”) | NA | NA | NA | 4 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2016.10251 | 2016 | Earth, Ecology, Energy and applied biology | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Hailey | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | The Dartmouth Institute for Health Policy and Clinical Practice, Lebanon, New Hampshire; The Geisel School of Medicine, Hanover, New Hampshire; Palmer College of Chiropractic, Davenport, Iowa; and Aix-Marseille University, Marseille, France. | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.11004 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Cost-effectiveness of PCSK9 Inhibitor Therapy in Patients With Heterozygous Familial Hypercholesterolemia or Atherosclerotic Cardiovascular Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medicine, Center for Vulnerable Populations, University of California, San Francisco2Department of Medicine, University of California, San Francisco3Department of Epidemiology and Biostatistics, University of California, San Francisco4Center”),list(name = “Division of General Internal Medicine, Columbia University Medical Center, New York, New York7College of Physicians and Surgeons, Columbia University, New York, New York”),list(name = “Department of Medicine, Center for Vulnerable Populations, University of California, San Francisco2Department of Medicine, University of California, San Francisco8Division of General Internal Medicine, Zuckerberg San Francisco General Hospital, San Franci”),list(name = “Department of Medicine, Center for Vulnerable Populations, University of California, San Francisco2Department of Medicine, University of California, San Francisco”),list(name = “Institute for Clinical and Economic Review, Boston, Massachusetts”),list(name = “Department of Medicine, University of California, San Francisco”),list(name = “Department of Medicine, Center for Vulnerable Populations, University of California, San Francisco”),list(name = “Department of Medicine, Center for Vulnerable Populations, University of California, San Francisco2Department of Medicine, University of California, San Francisco3Department of Epidemiology and Biostatistics, University of California, San Francisco8Divisi”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.11136 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Abaloparatide vs Placebo on New Vertebral Fractures in Postmenopausal Women With Osteoporosis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Colorado Center for Bone Research, Lakewood”),list(name = “Radius Health, Waltham, Massachusetts”),list(name = “Nordic Bioscience, Copenhagen, Denmark”),list(name = “Center for Health & Medical Research, Hong Kong, People’s Republic of China”),list(name = “Clinical Research Center, Helen Hayes Hospital, West Haverstraw, New York”) | NA | NA | NA | 14 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.11232 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association of Integrated Team-Based Care With Health Care Quality, Utilization, and Cost | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Intermountain Healthcare, Salt Lake City, Utah.,Intermountain Healthcare, Salt Lake City, Utah2Institut Driot et Sante, Paris, France.,University of Michigan, Ann Arbor. | 12345678 | NA | NA | 8 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.11329 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Timing of Initiation of Renal Replacement Therapy in Critically Ill Patients With Acute Kidney Injury | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Intensive Care Unit, Marc Jacquet Hospital, Melun, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.11387 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Bevacizumab Nasal Spray on Epistaxis Duration in Hereditary Hemorrhagic Telangectasia | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Hospices Civils de Lyon, Hôpital Femme-Mère-Enfants, Service de Génétique et centre de référence sur la maladie de Rendu-Osler, Bron, France2Université de Lyon, Faculté de médecine, Université Lyon 1, Lyon, France.,Hospices Civils de Lyon, Hôpital de la Croix Rousse, Service d’ORL, Lyon, France.,Hospices Civils de Lyon, pôle IMER, Lyon, France5Université Lyon 1, Lyon, France.,Hospices Civils de Lyon, pôle IMER, Lyon, France.,Service d’ORL, CHU La Milétrie, Poitiers, France.,Hôpital de la conception, CHU de Marseille, Service de médecine interne, Marseille, France.,Hôpital la Timone, CHU de Marseille, Service d’ORL, Marseille, France.,Hospices Civils de Lyon, Hôpital E. Herriot, Service d’ORL, Lyon, France. | 123451516171819 | NA | NA | 19 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.12195 | 2016 | Medical research | NA | c(“je”, “ca”, “us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Recommendations for Conduct, Methodological Practices, and Reporting of Cost-effectiveness Analyses | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Duke Clinical Research Institute, Duke University, Durham, North Carolina,Center for the Evaluation of Value and Risk in Health, Institute for Clinical Research and Health Policy Studies, Tufts Medical Center, Boston, Massachusetts,Pharmaceutical Outcomes Research and Policy Program, Department of Pharmacy, and Departments of Health Services and Economics, University of Washington, Seattle,Division of Medical Ethics, Social Medicine, Harvard Medical School, Boston, Massachusetts,Department of Economics, McMaster University, Hamilton, Ontario, Canada,Centre for Health Economics, University of York, York, England,Department of Health Services, Policy and Practice, School of Public Health, Brown University, Providence, Rhode Island,Department of Economics and Institute for Health, Rutgers University, New Brunswick, New Jersey,Patient-Centered Outcomes Research Institute, Washington, DC,Department of Family Medicine and Community Health, Miller School of Medicine, University of Miami, Miami, Florida | 123451213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.12347 | 2016 | Medical research | NA | c(“fr”, “es”, “ge”, “de”, “ch”, “it”, “br”, “ca”, “dk”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between Transcatheter Aortic Valve Replacement and Subsequent Infective Endocarditis and In-Hospital Death | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Quebec Heart & Lung Institute, Laval University, Quebec City, Quebec, Canada.,Heart Center, Leipzig University, Leipzig, Germany.,EMO-GVM Centro Cuore Columbus and San Raffaele Scientific Institute, Milan, Italy.,Rigshospitalet, Copenhagen, Denmark.,Bichat Hôpital, AP-HP, University Paris Diderot, France.,Hospital Clinico Universitario de Valladolid, Valladolid, Spain. | 123456162636465 | NA | NA | 65 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.12399 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Interventions for Vitiligo | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, Henri Mondor Hospital and EpiDermE, Université Paris-Est Créteil Val-de-Marne, Créteil, France”),list(name = “Cochrane Skin Group, Centre of Evidence Based Dermatology, University of Nottingham, Nottingham, England”),list(name = “ISGlobal, Centre for Research in Environmental Epidemiology, Barcelona, Spain”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.12410 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Training the Workforce for 21st-Century Science | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University of Pittsburgh, Pittsburgh, Pennsylvania.,University of Maryland, Baltimore County, Baltimore.,Sanofi, Paris, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.12680 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Care Guided by Cardiovascular Magnetic Resonance, Myocardial Perfusion Scintigraphy, or NICE Guidelines on Subsequent Unnecessary Angiography Rates | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Division of Biomedical Imaging, Multidisciplinary Cardiovascular Research Centre, Leeds Institute of Cardiovascular and Metabolic Medicine, University of Leeds, Leeds, United Kingdom”),list(name = “Institute of Cardiovascular and Medical Sciences, College of Medical, Veterinary, and Life Sciences, University of Glasgow, Glasgow, United Kingdom”),list(name = “Department of Cardiovascular Sciences, University of Leicester, Leicester, United Kingdom4NIHR Leicester Cardiovascular Biomedical Research Unit, Glenfield Hospital, Leicester, United Kingdom”),list(name = “Clinical Trials Research Unit, Leeds Institute of Clinical Trials Research, University of Leeds, Leeds, United Kingdom”) | NA | NA | NA | 18 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.13512 | 2016 | Medical research | NA | c(“mc”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Non–TNF-Targeted Biologic vs a Second Anti-TNF Drug to Treat Rheumatoid Arthritis in Patients With Insufficient Response to a First Anti-TNF Drug | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Rheumatology, National Reference Center for Systemic Autoimmune Diseases, Strasbourg University Hospital, Université de Strasbourg, Strasbourg, France.,Department of Rheumatology, Centre Hospitalier Princesse Grâce, Monaco.,Department of Rheumatology, Rennes University Hospital, Rennes, France.,Department of Rheumatology, Centre Hospitalier de Cahors, Cahors, France.,Department of Rheumatology, Nantes University Hospital, Nantes, France.,Department of Immunology, Hôpital Necker, Paris, France.,Department of Epidemiology and Biostatistics, Hotel Dieu, Paris, France. | 123454344454647 | NA | NA | 47 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.13843 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Face Mask vs Helmet for Noninvasive Ventilation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “CHU Henri Mondor, Service de Réanimation Médicale, Créteil, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.14486 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association Between Tracheal Intubation During Pediatric In-Hospital Cardiac Arrest and Survival | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Emergency Medicine, Beth Israel Deaconess Medical Center, Boston, Massachusetts2Department of Anesthesiology, Aarhus University Hospital, Aarhus, Denmark3Research Center for Emergency Medicine, Aarhus University Hospital, Aarhus, Denmark”),list(name = “Division of Cardiac Critical Care, Department of Pediatrics, Medical City Children’s Hospital, Dallas, Texas”),list(name = “Department of Anesthesiology and Critical Care, The Children’s Hospital of Philadelphia, Philadelphia, Pennsylvania6Department of Pediatrics, University of Pennsylvania Perelman School of Medicine, Philadelphia7Department of Anesthesiology and Critical Care, University of Pennsylvania Perelman School of Medicine, Philadelphia”),list(name = “Department of Emergency Medicine, University of Pennsylvania, Philadelphia9Now with the Department of Emergency Medicine, Beth Israel Deaconess Medical Center, Boston, Massachusetts”),list(name = “Institute of Public Health, Charité–Universitätsmedizin Berlin, Berlin, Germany”),list(name = “Department of Emergency Medicine, Beth Israel Deaconess Medical Center, Boston, Massachusetts11Department of Medicine, Division of Pulmonary and Critical Care Medicine, Beth Israel Deaconess Medical Center, Boston, Massachusetts”) | NA | NA | NA | 8 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.14568 | 2016 | Medical research | NA | c(“it”, “dk”, “de”, “fr”, “gb”, “nl”, “es”, “se”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between Low-Density Lipoprotein Cholesterol–Lowering Genetic Variants and Risk of Type 2 Diabetes | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | MRC Epidemiology Unit, University of Cambridge, Cambridge, United Kingdom.,Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom.,Metabolic Research Laboratories, Institute of Metabolic Science, University of Cambridge, Cambridge, CB2 0QQ, United Kingdom.,Institute of Cardiovascular and Medical Sciences, University of Glasgow, Glasgow, G12 8TA, United Kingdom. | 123453738394041 | NA | NA | 41 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.14655 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Empirical Micafungin Treatment and Survival Without Invasive Fungal Infection in Adults With ICU-Acquired Sepsis, Candida Colonization, and Multiple Organ Failure | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | UMR1137-IAME Inserm, Paris Diderot University, Paris, France2Medical and Infectious Diseases ICU, Bichat-Claude Bernard University Hospital, Paris, France.,Saint-Louis University Hospital, Medical ICU, Paris, France.,Medical ICU, Albert Michallon University Hospital, Grenoble, France.,Medical ICU, François Mitterrand University Hospital, Dijon, France.,UMR5525 CNRS-Grenoble Alpes University, Parasitology-Mycology, Grenoble Alpes University Hospital, Grenoble, France.,ICUREsearch, Department of Biostatistics, Paris, France.,Pharmacology Department, Georges Pompidou Hospital, Paris Descartes University, Paris, France. | 123452324252627 | NA | NA | 27 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.14799 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Hydrocortisone on Development of Shock Among Patients With Severe Sepsis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Anesthesiology and Intensive Care Medicine, Charité–Universitätsmedizin Berlin, Berlin, Germany”),list(name = “Clinical Trial Centre Leipzig, Leipzig, Germany”),list(name = “Department of Intensive Care and Intermediate Care, University Hospital RWTH Aachen, Aachen, Germany”),list(name = “Department of Intensive Care Medicine, HELIOS Hospital Bad Saarow, Bad Saarow, Germany”),list(name = “Department of Anesthesiology and Intensive Care Medicine, University Medical Center Schleswig Holstein, Campus Kiel, Kiel, Germany”),list(name = “Department of Anesthesiology, Intensive Care Medicine, Emergency Medicine and Pain Management, Klinikum Oldenburg Medical Campus Carl von Ossietzky Universität, Oldenburg, Germany”),list(name = “Department of Anesthesiology and Intensive Care Medicine, Jena University Hospital, Jena, Germany”),list(name = “Center for Clinical Studies, Center for Sepsis Control and Care, Jena University Hospital, Jena, Germany”) | NA | NA | NA | 28 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.16289 | 2016 | Social sciences | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Euthanasia or Assisted Suicide in Patients With Psychiatric Illness—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Psychiatric Emergency and Acute Care, Centre Hospitalier Universitaire Montpellier, Montpellier, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.16915 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Screening for Social Determinants of Health | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “University of California, San Francisco”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.16951 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Evolocumab on Progression of Coronary Disease in Statin-Treated Patients | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “South Australian Health and Medical Research Institute, University of Adelaide, Adelaide, Australia2Department of Cardiovascular Medicine, Cleveland Clinic Coordinating Center for Clinical Research, Cleveland, Ohio”),list(name = “Department of Cardiovascular Medicine, Cleveland Clinic Coordinating Center for Clinical Research, Cleveland, Ohio”),list(name = “Libin Cardiovascular Institute, University of Calgary, Calgary, Alberta, Canada”),list(name = “The Methodist DeBakey Heart and Vascular Center, Section of Cardiovascular Research, Baylor College of Medicine, Houston, Texas”),list(name = “Department of Cardiology, Canisius Wilhelmina Hospital, Nijmegen, the Netherlands”),list(name = “Department of Cardiology, Noordwest Ziekenhuisgroep, Alkmaar, the Netherlands”) | NA | NA | NA | 19 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.18425 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association Between the Birth of an Infant With Major Congenital Anomalies and Subsequent Risk of Mortality in Their Mothers | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Pediatrics, The Hospital for Sick Children, University of Toronto, Toronto, Ontario, Canada2Department of Clinical Epidemiology, Aarhus University Hospital, Aarhus, Denmark3Institute of Health Policy, Management, and Evaluation, University of Toronto, Toronto, Ontario, Canada4Center for Primary Care and Outcomes Research, Stanford University, Stanford, California5Clinical Excellence Research Center, Stanford University School of Medicine, Stanford, California”),list(name = “Department of Clinical Epidemiology, Aarhus University Hospital, Aarhus, Denmark”),list(name = “Institute of Health Policy, Management, and Evaluation, University of Toronto, Toronto, Ontario, Canada6St Michael’s Hospital Department of Medicine, University of Toronto, Toronto, Ontario, Canada”),list(name = “Center for Health and Community, University of California–San Francisco School of Medicine”),list(name = “Center for Primary Care and Outcomes Research, Stanford University, Stanford, California”),list(name = “Clinical Excellence Research Center, Stanford University School of Medicine, Stanford, California”),list(name = “Department of Clinical Epidemiology, Aarhus University Hospital, Aarhus, Denmark8Division of Epidemiology, Department of Health Research and Policy, Stanford University, Stanford, California”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.1952 | 2016 | Medical research | NA | c(“ca”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Evolution of ReportingPValues in the Biomedical Literature, 1990-2015 | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre d’Analyse et de Mathématiques Sociales (CAMS), EHESS-CNRS UMR8557 and Complex Systems Institute of Paris Île-de-France (ISC-PIF, UPS3611), Paris, France.,Departments of Health Research and Policy and Meta-Research Innovation Center at Stanford (METRICS), Stanford University, Stanford, California.,Department of Epidemiology and Biostatistics, Western University, London, Ontario, Canada.,Departments of Medicine, Health Research and Policy, and Statistics, and Meta-Research Innovation Center at Stanford (METRICS), Stanford University, Stanford, California. | 1234 | NA | NA | 4 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.1975 | 2016 | Medical research | NA | c(“fi”, “nl”, “ca”, “de”, “cn”, “se”, “dk”, “us”, “fr”, “au”, “no”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Genetic Evidence for Causal Relationships Between Maternal Obesity-Related Traits and Birth Weight | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institute of Biomedical and Clinical Science, University of Exeter Medical School, Royal Devon and Exeter Hospital, Exeter, United Kingdom,European Centre for Environment and Human Health, University of Exeter, the Knowledge Spa, Truro, United Kingdom,School of Social and Community Medicine, University of Bristol, Oakfield House, Oakfield Grove, Bristol, United Kingdom,The Generation R Study Group, Erasmus MC, University Medical Center Rotterdam, Rotterdam, the Netherlands,Medical Research Council Integrative Epidemiology Unit at the University of Bristol, United Kingdom | 12636465 | NA | NA | 65 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.2691 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Incidence, Risk Factors, and Attributable Mortality of Secondary Infections in the Intensive Care Unit After Admission for Sepsis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Center for Experimental and Molecular Medicine, Division of Infectious Diseases, Academic Medical Center, University of Amsterdam, Amsterdam, the Netherlands”),list(name = “Department of Intensive Care Medicine, University Medical Center Utrecht, Utrecht, the Netherlands3Department of Medical Microbiology, University Medical Center Utrecht, Utrecht, the Netherlands4Julius Center for Health Sciences and Primary Care, Universi”),list(name = “Department of Mathematics, Utrecht University, Utrecht, the Netherlands”),list(name = “Center for Experimental and Molecular Medicine, Division of Infectious Diseases, Academic Medical Center, University of Amsterdam, Amsterdam, the Netherlands6Department of Clinical Epidemiology, Biostatistics and Bioinformatics, Academic Medical Center, U”),list(name = “Cologne Center for Genomics, Cologne Excellence Cluster on Cellular Stress Responses in Aging-Associated Diseases, and Center for Molecular Medicine Cologne, University of Cologne, Cologne, Germany”),list(name = “Department of Medical Microbiology, University Medical Center Utrecht, Utrecht, the Netherlands4Julius Center for Health Sciences and Primary Care, University Medical Center Utrecht, Utrecht, the Netherlands”),list(name = “Department of Intensive Care Medicine, University Medical Center Utrecht, Utrecht, the Netherlands”) | NA | NA | NA | 12 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.2706 | 2016 | Medical research | NA | c(“ca”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Noninvasive Ventilation on Tracheal Reintubation Among Patients With Hypoxemic Respiratory Failure Following Abdominal Surgery | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | hal-01305486 | 1 | NA | NA | 4 | hybrid | NA | Saint Eloi University Hospital and Montpellier School of Medicine, Research Unit INSERM U1046, Montpellier, France.,Saint Antoine Hospital, AP-HP, Paris, France.,Estaing Hospital, Clermont-Ferrand, France.,Beaujon Hospital, AP-HP, Paris, France.,Rennes University Hospital, Rennes, France.,St Michael’s Hospital, Toronto, Ontario, Canada.,Lapeyronie University Hospital and Montpellier School of Pharmacy, Research Unit IMAG U5149, Montpellier, France. | 123451920212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.3486 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Lung Volume Reduction Coils for Severe Emphysema—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “INSERM U903, Hôpital Universitaire de Reims, Reims, France”),list(name = “FHU ONCOAGE, Université Cote d’Azur, Nice, France”) | NA | NA | NA | 3 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.3608 | 2016 | Medical research | NA | c(“de”, “cz”, “fr”, “nl”, “gb”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Efficacy and Tolerability of Evolocumab vs Ezetimibe in Patients With Muscle-Related Statin Intolerance | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Cleveland Clinic, Cleveland, Ohio.,University of Amsterdam Faculty of Medicine, Amsterdam, the Netherlands.,Amgen Inc, Thousand Oaks, California.,School of Medicine at Mount Sinai, New York, New York.,Flinders University, Bedford Park, SA, Australia.,Metabolic and Atherosclerosis Research Center, Cincinnati, Ohio. | 123451516171819 | NA | NA | 19 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.3609 | 2016 | Medical research | NA | c(“es”, “se”, “hu”, “pl”, “sk”, “cz”, “au”, “fr”, “ca”, “de”, “ua”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Losmapimod on Cardiovascular Outcomes in Patients Hospitalized With Acute Myocardial Infarction | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | TIMI Study Group, Cardiovascular Division, Brigham and Women’s Hospital, Boston, Massachusetts.,Metabolic Pathways and Cardiovascular Unit, Research and Development, GlaxoSmithKline, Collegeville, Pennsylvania.,South Australian Health and Medical Research Institute, Flinders University Medical Centre, Adelaide, South Australia, Australia. | 123452627282930 | NA | NA | 30 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.3775 | 2016 | Medical research | NA | c(“fr”, “us”, “be”, “il”) | 0098-7484 | 0098-7484 | JAMA | en | Development and Validation of a Prediction Rule for Benefit and Harm of Dual Antiplatelet Therapy Beyond 1 Year After Percutaneous Coronary Intervention | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Smith Center for Outcomes Research in Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts2Harvard Medical School, Boston, Massachusetts3Harvard Clinical Research Institute, Boston, Massachusetts.,Harvard Medical School, Boston, Massachusetts3Harvard Clinical Research Institute, Boston, Massachusetts4Cardiology Division, Massachusetts General Hospital, Boston.,Christ Hospital Heart and Vascular Center, Cincinnati, Ohio6Lindner Center for Research and Education, Cincinnati, Ohio.,Harvard Medical School, Boston, Massachusetts7Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Cardiovascular Sciences, University of Leicester, Leicester, United Kingdom9National Institute for Health Research Leicester Cardiovascular Biomedical Research Unit, University Hospitals of Leicester NHS Trust, Glenfield Hospital, Leicester.,Harvard Clinical Research Institute, Boston, Massachusetts.,Harvard Clinical Research Institute, Boston, Massachusetts20Boston University School of Public Health, Boston, Massachusetts.,Harvard Medical School, Boston, Massachusetts3Harvard Clinical Research Institute, Boston, Massachusetts21Brigham and Women’s Hospital, Boston, Massachusetts. | 123451314151617 | NA | NA | 17 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.3964 | 2016 | Medical research | NA | c(“je”, “dk”, “fr”, “de”, “pl”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Efficacy of a House Dust Mite Sublingual Allergen Immunotherapy Tablet in Adults With Allergic Asthma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Pneumology/Intensive Care Medicine, University of Rostock, Germany.,Department of Respiratory Medicine, Bispebjerg University Hospital, Copenhagen, Denmark.,Division of Internal Medicine, Asthma and Allergy, Medical University of Lodz, Poland.,Departamento de Medicina, Universidad de Valencia, Spain.,Merck Research Laboratories, White House Station, New Jersey.,Global Clinical Development, ALK, Hoersholm, Denmark.,Chest Disease Department, University Hospital of Strasbourg, Strasbourg University, France. | 123456789 | NA | NA | 9 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.4059 | 2016 | Medical research | NA | c(“us”, “fr”, “je”, “ca”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Pembrolizumab With Tumor Response and Survival Among Patients With Advanced Melanoma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Hematology and Oncology, University of California-Los Angeles, Los Angeles.,Department of Hematology/Oncology, The Angeles Clinic and Research Institute, Los Angeles, California.,Department of Hematology/Oncology, University of California-San Francisco, San Francisco.,Department of Medical Oncology, Dana-Farber Cancer Institute, Boston, Massachusetts.,Department of Medicine, Memorial Sloan Kettering Cancer Center, New York, New York.,Department of Clinical Oncology, Merck & Co, Inc, Kenilworth, New Jersey.,BARDS, Merck & Co, Inc, Kenilworth, New Jersey.,Department of Medical Oncology, Gustave-Roussy Cancer Campus and Paris Sud University, Villejuif Paris-Sud, France. | 123452425262728 | NA | NA | 28 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.4072 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | On Death and Money | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Princeton University, Princeton, New Jersey”) | NA | NA | NA | 1 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.4218 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Safety and Immunogenicity of Novel Adenovirus Type 26– and Modified Vaccinia Ankara–Vectored Ebola Vaccines | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Oxford Vaccine Group, Department of Paediatrics, University of Oxford, Oxford, United Kingdom”),list(name = “Janssen, Pharmaceutical Companies of Johnson & Johnson, Leiden, the Netherlands”),list(name = “Jenner Institute, Centre for Clinical Vaccinology and Tropical Medicine, University of Oxford, Oxford, United Kingdom7National Institute for Health Research (NIHR) Oxford Biomedical Research Centre, Oxford, United Kingdom”),list(name = “Nuffield Department of Medicine, University of Oxford, Oxford, United Kingdom”),list(name = “Oxford Vaccine Group, Department of Paediatrics, University of Oxford, Oxford, United Kingdom7National Institute for Health Research (NIHR) Oxford Biomedical Research Centre, Oxford, United Kingdom”) | NA | NA | NA | 30 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.4324 | 2016 | Medical research | NA | c(“se”, “be”, “fr”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Chemoradiotherapy vs Chemotherapy on Survival in Patients With Locally Advanced Pancreatic Cancer Controlled After 4 Months of Gemcitabine With or Without Erlotinib | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Digestive Oncology, Beaujon Hospital (AP-HP), Clichy, France.,Department of Radiotherapy, Tenon Hospital (AP-HP), Paris, France.,Department of Gastroenterology, Erasme University Hospital, Brussels, Belgium.,Department of Medical Oncology, Prince of Wales Hospital, Sydney, Australia5Australasian Gastrointestinal Trials Group (AGITG), Camperdown, Australia6Prince of Wales Clinical School, University of New South Wales, Sydney, Australia.,Department of Radiology, Oncology, and Radiation Science, University of Uppsala, Uppsala, Sweden.,Department of Radiotherapy and Medical Oncology, Sainte-Catherine Institute, Avignon, France.,Department of Medical Oncology, Franco-British Hospital Institute, Levallois-Perret, France15Oncology Multidisciplinary Research Group (GERCOR), Paris, France.,Department of Methodology and Quality of Life in Oncology, Hospital Minjoz, Besançon, France.,Department of Medical Oncology, Institute Mutualiste Montsouris, Paris, France. | 123451112131415 | NA | NA | 15 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.4619 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Acetazolamide and Invasive Mechanical Ventilation for Patients With COPD | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service de Réanimation Médicale, Hôpital Henri Mondor, Créteil, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.4625 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Acetazolamide and Invasive Mechanical Ventilation for Patients With COPD—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Assistance Publique-Hôpitaux de Paris, Paris, France”) | NA | NA | NA | 3 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.5148 | 2016 | Medical research | NA | c(“be”, “gb”, “it”, “fi”, “fr”, “se”, “ch”, “at”, “nl”, “dk”, “de”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Sexual Activity Without Condoms and Risk of HIV Transmission in Serodifferent Couples When the HIV-Positive Partner Is Using Suppressive Antiretroviral Therapy | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Research Department of Infection and Population Health, University College London, London, United Kingdom.,Department of Infectious Diseases/CHIP, Rigshospitalet, University of Copenhagen, Copenhagen, Denmark.,Division of Infectious Diseases and Hospital Epidemiology, Cantonal Hospital, St Gallen, Switzerland.,HIV i-Base, London, United Kingdom.,Hospital Clínico Universitario de Santiago de Compostela, Santiago de Compostela, Spain.,Coventry and Warwickshire Hospital, Coventry, United Kingdom. | 123453132333435 | NA | NA | 35 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.5258 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Macitentan on the Development of New Ischemic Digital Ulcers in Patients With Systemic Sclerosis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Internal Medicine, University of Michigan Scleroderma Program, Ann Arbor”),list(name = “Centre for Rheumatology and Connective Tissue Disease, Royal Free Hospital, London, United Kingdom”),list(name = “Division of Rheumatology, University of Pennsylvania, Philadelphia”),list(name = “Department of Dermatology, University of Cologne, Cologne, Germany”),list(name = “Actelion Pharmaceuticals Ltd, Allschwil, Switzerland”),list(name = “Department of Medicine, Division of Rheumatology, University of Western Ontario, London, Ontario, Canada”),list(name = “Department of Experimental and Clinical Medicine, Division of Rheumatology, AOUC, University of Florence, Florence, Italy”),list(name = “Division of Rheumatology, UCLA, Los Angeles”) | NA | NA | NA | 11 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.5637 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Communication With Family Caregivers in the Intensive Care Unit | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Famirea Study Group, Hôpital Saint-Louis, Paris, France”),list(name = “Memorial Sloan Kettering Cancer Center, New York, New York”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.5828 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Early vs Delayed Initiation of Renal Replacement Therapy on Mortality in Critically Ill Patients With Acute Kidney Injury | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Anaesthesiology, Intensive Care Medicine and Pain Medicine, University Hospital Münster, Germany”),list(name = “Center for Critical Care Nephrology, Department of Critical Care Medicine, University of Pittsburgh, Pennsylvania”),list(name = “Department of Internal Medicine D, University Hospital Münster, Germany”),list(name = “Institute of Biostatistics and Clinical Research, University of Münster, Münster, Germany”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.6187 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Notice of Retraction and Replacement: Kessler RC, et al. Associations of Housing Mobility Interventions for Children in High-Poverty Neighborhoods With Subsequent Mental Disorders During Adolescence.JAMA. 2014;311(9):937-947. | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts”),list(name = “School of Education, University of California-Irvine”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts4Department of Economics, Harvard University, Cambridge, Massachusetts”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts5Congressional Budget Office, Washington, DC”),list(name = “National Bureau of Economic Research, Cambridge, Massachusetts6Harris School of Public Policy, University of Chicago, Chicago, Illinois”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.6261 | 2016 | Medical research | NA | c(“us”, “ca”, “gb”, “fr”, “de”, “il”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Endobronchial Coils vs Usual Care on Exercise Tolerance in Patients With Severe Emphysema | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University of Pittsburgh School of Medicine, Pittsburgh, Pennsylvania.,Lewis Katz School of Medicine at Temple University, Philadelphia, Pennsylvania.,Medical University of South Carolina, Charleston.,National Institute for Health Research Unit, Royal Brompton and Harefield NHS Foundation Trust, Imperial College, London, England5Chelsea and Westminster Hospital, London, England.,New York University School of Medicine, New York, New York.,Thoraxklinik at the University of Heidelberg, Heidelberg, Germany.,Duke University Medical Center, Durham, North Carolina.,Cleveland Clinic Foundation, Cleveland, Ohio.,University of Groningen, University Medical Center Groningen, Groningen, the Netherlands. | 123452324252627 | NA | NA | 27 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.6310 | 2016 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Sharing of Data From Industry-Funded Registered Clinical Trials | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | INSERM UMR 1153, Paris Descartes University, Paris, France.,Centre d’Épidémiologie Clinique, Hôpital Hôtel Dieu, Assistance Publique des Hôpitaux de Paris, Paris, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.6471 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Incidence of Acute Respiratory Distress Syndrome—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “School of Medicine and Surgery, University of Milan-Bicocca, Monza, Italy”),list(name = “Unité de Réanimation Medico-Chirurgicale, Pôle Thorax Voies Aériennes, Hôpital Tenon, AP-HP, Paris, France”),list(name = “Department of Anesthesia, St Michael’s Hospital, Toronto, Ontario, Canada”) | NA | NA | NA | 4 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.7592 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Sulindac and Erlotinib for Familial Adenomatous Polyposis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Paris-Diderot University, Paris, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.7735 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | High-Flow vs Conventional Oxygen Therapy and Risk of Reintubation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Service de Réanimation Médicale, CHU Bordeaux, Bordeaux, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.8012 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Use of Plant-Based Therapies and Menopausal Symptoms | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Epidemiology, Erasmus University Medical Center, Rotterdam, the Netherlands”),list(name = “Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”),list(name = “Department of Epidemiology, Erasmus University Medical Center, Rotterdam, the Netherlands3Department of Nutrition, Harvard T. H. Chan School of Public Health, Boston, Massachusetts”) | NA | NA | NA | 8 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.9635 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Temporal Trends in Late Preterm and Early Term Birth Rates in 6 High-Income Countries in North America and Europe and Association With Clinician-Initiated Obstetric Interventions | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Epidemiology, Rollins School of Public Health, Emory University, Atlanta, Georgia”),list(name = “Departments of Pediatrics and of Epidemiology, Biostatistics and Occupational Health, McGill University Faculty of Medicine, Montreal, Quebec, Canada”),list(name = “Centre for Chronic Disease Prevention, Surveillance and Epidemiology Division, Public Health Agency of Canada, Ottawa, Ontario, Canada”),list(name = “Section of Social Medicine, University of Copenhagen, and Methods and Analysis, Statistics, Denmark, Copenhagen, Denmark”),list(name = “Department of Obstetrics and Gynecology and Women’s Health, Albert Einstein College of Medicine/Montefiore Medical Center, Bronx, New York”),list(name = “Department of Social Medicine, National Center for Child Health and Development, Tokyo, Japan”),list(name = “Departments of Pediatrics and Community Health Sciences, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada”),list(name = “INSERM UMR 1153, Center for Epidemiology and Statistics Sorbonne Paris Cité, Paris Descartes University, Paris, France”) | NA | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.9781 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Radiation Therapy Deviations in Trial of Locally Advanced Pancreatic Cancer—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Radiation Oncology, Tenon Hospital (AP-HP), Paris, France”),list(name = “Department of Medical Oncology, Prince of Wales Hospital, Sydney, Australia”),list(name = “Department of Digestive Oncology, Beaujon Hospital (AP-HP), Clichy, France”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.9883 | 2016 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | The Controversial Issue of Euthanasia in Patients With Psychiatric Illness | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Psychiatric Emergency and Acute Care, Lapeyronie Hospital, Centre Hospitalier Universitaire Montpellier, University of Montpellier, INSERM U1061, Montpellier, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamacardio.2015.0326 | 2016 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Development and Validation of a Risk Prediction Model for In-Hospital Mortality After Transcatheter Aortic Valve Replacement | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Surgery, University of Florida College of Medicine–Jacksonville”),list(name = “Department of Medicine, St Luke’s Mid America Heart Institute, Kansas City, Missouri”),list(name = “Duke Clinical Research Institute, Durham, North Carolina”),list(name = “Department of Cardiovascular Disease, Baylor Scott and White Health Care System, Plano, Texas”),list(name = “Department of Medicine and the Philip R. Lee Institute for Health Policy Studies, University of California, San Francisco”),list(name = “Department of Medicine, University of Colorado School of Medicine, Anschutz Medical Campus, Aurora”),list(name = “Department of Medicine, Mayo Clinic, Rochester, Minnesota”) | NA | NA | NA | 15 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.0582 | 2016 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Atrial Fibrillation and Cancer | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medicine, Boston University Medical Center, Boston, Massachusetts”),list(name = “Section of Cardiovascular Medicine, Preventive Medicine, and Epidemiology, Department of Medicine, Boston University School of Medicine, Boston, Massachusetts3National Heart, Lung, and Blood Institute’s and Boston University’s Framingham Heart Study, Fram”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.1017 | 2016 | Medical research | NA | c(“hu”, “ca”, “pe”, “no”, “de”, “se”, “pl”, “au”, “nl”, “il”, “za”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Long-term Tolerability of Ticagrelor for the Secondary Prevention of Major Adverse Cardiovascular Events | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | TIMI Study Group, Brigham and Women’s Hospital Heart and Vascular Center, Boston, Massachusetts.,Department of Cardiology, CWZ Hospital, Nijmegen, the Netherlands.,Département Hospitalo Universitaire FIRE, AP-HP, Hôpital Bichat, Paris, France4Université Paris-Diderot, Sorbonne Paris Cité, Paris, France.,Department of Cardiovascular Science, University of Sheffield, Sheffield, England.,South Australian Health and Medical Research Institute, Flinders University, Adelaide, Australia.,AstraZeneca Research and Development, Mölndal, Sweden.,TIMI Study Group, Brigham and Women’s Hospital Heart and Vascular Center, Boston, Massachusetts18Deputy Editor, JAMA Cardiology. | 123451819202122 | NA | NA | 22 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.1577 | 2016 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Comparison of ACC/AHA and ESC Guideline Recommendations Following Trial Evidence for Statin Use in Primary Prevention of Cardiovascular Disease | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Epidemiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands”),list(name = “Department of Preventive Medicine, Northwestern University, Chicago, Illinois”),list(name = “Department of Cardiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands”),list(name = “Department of Epidemiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands4Department of Neurology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands5Department of Radiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands”),list(name = “Department of Epidemiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands6Department of Epidemiology, Harvard T. H. Chan School of Public Health, Boston, Massachusetts”),list(name = “Department of Epidemiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands7Department of Internal Medicine, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands8Inspectorate for Health Care, Utrecht, the Netherlands”),list(name = “Department of Epidemiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands3Department of Cardiology, Erasmus MC–University Medical Center Rotterdam, Rotterdam, the Netherlands6Department of Epidemiology, Harvard T. H. Chan School of Public Health, Boston, Massachusetts”) | NA | NA | NA | 11 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.1701 | 2016 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Effect of Cyclosporine in Nonshockable Out-of-Hospital Cardiac Arrest | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Hospices Civils de Lyon, Hôpital Edouard Herriot, Service de Réanimation Médicale, Lyon, France2Institut National de la Santé et de la Recherche Médicale, Unité Mixte de Recherche 1060, Carmen, Equipe Cardioprotection, Lyon, France3Université de Lyon, Uni.,Hospices Civils de Lyon, Service d’Aide Médicale Urgente 69, Lyon, France.,Centre Hospitalier Universitaire de Saint-Etienne, Service d’Aide Médicale Urgente 42A, Saint-Etienne, France.,Hospices Civils de Lyon, Hôpital Louis Pradel, Explorations Fonctionnelles Cardiovasculaires et Centre d’Investigation Clinique de Lyon, Lyon, France.,Université de Lyon, Université Claude Bernard Lyon 1, Lyon, France4Hospices Civils de Lyon, Service d’Aide Médicale Urgente 69, Lyon, France.,Hospices Civils de Lyon, Hôpital Edouard Herriot, Service de Réanimation Médicale, Lyon, France3Université de Lyon, Université Claude Bernard Lyon 1, Lyon, France.,Université de Lyon, Université Claude Bernard Lyon 1, Lyon, France7Hospices Civils de Lyon, Centre Hospitalier Lyon-Sud, Service de Biostatistique, Lyon, France8Centre National de la Recherche Scientifique Unité Mixte de Recherche 5558, Laboratoire de Bio.,Institut National de la Santé et de la Recherche Médicale, Unité Mixte de Recherche 1060, Carmen, Equipe Cardioprotection, Lyon, France3Université de Lyon, Université Claude Bernard Lyon 1, Lyon, France6Hospices Civils de Lyon, Hôpital Louis Pradel, Explo. | 123452324252627 | NA | NA | 27 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2016.1829 | 2016 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Apixaban 5 mg Twice Daily and Clinical Outcomes in Patients With Atrial Fibrillation and Advanced Age, Low Body Weight, or High Creatinine | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Duke Clinical Research Institute, Duke Health, Durham, North Carolina”),list(name = “Uppsala Clinical Research Center, Uppsala University, Uppsala, Sweden”),list(name = “Division of Clinical Electrophysiology, Goethe University, Frankfurt, Germany”),list(name = “Third Department of Medicine, Cardiology and Emergency Medicine, Wilhelminenspital, Vienna, Austria”) | NA | NA | NA | 15 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.2877 | 2016 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Clinical Outcomes of Patients Who Received the Subcutaneous Implantable Cardioverter Defibrillator | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Tufts Medical Center, Tufts University School of Medicine, Boston, Massachusetts”) | NA | NA | NA | 1 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.3028 | 2016 | Medical research | NA | c(“se”, “fi”, “fr”, “it”, “de”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Safety of Preoperative Use of Ticagrelor With or Without Aspirin Compared With Aspirin Alone in Patients With Acute Coronary Syndromes Undergoing Coronary Artery Bypass Grafting | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Cardiovascular Sciences, Cardiac Surgery Unit, San Camillo Forlanini Hospital, Rome, Italy.,Department of Cardiovascular Sciences, Clinical Sciences Wing, University of Leicester, Glenfield Hospital, Leicester, England.,Department of Molecular Medicine and Surgery, Karolinska Institutet, Karolinska University Hospital, Stockholm, Sweden4Department of Cardiothoracic Surgery and Anesthesiology, Karolinska Institutet, Karolinska University Hospital, Stockholm, Sweden.,Division of Cardiovascular Surgery, Verona University Hospital, Verona, Italy.,Department of Thoracic and Cardiovascular Surgery, University Hospital Jean Minjoz, Besançon, France.,Department of Cardiac Surgery, Centro Cardiologico-Fondazione Monzino Istituto di Ricovero e Cura a Carattere Scientifico, University of Milan, Milan, Italy.,Department of Surgery, Oulu University Hospital, Oulu, Finland.,Division of Cardiothoracic and Vascular Surgery, Pontchaillou University Hospital, Rennes, France.,National Institute of Health, Rome, Italy. | 123452627282930 | NA | NA | 30 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.3030 | 2016 | Medical research | NA | c(“ca”, “il”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Prognostic Implications of Biomarker Assessments in Patients With Type 2 Diabetes at High Cardiovascular Risk | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | TIMI Study Group, Cardiovascular Division, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts.,Diabetes Unit, Division of Internal Medicine, Hadassah Hebrew University Hospital, Jerusalem, Israel.,AstraZeneca Research and Development, Gaithersburg, Maryland.,National Heart and Lung Institute, Imperial College, Institute of Cardiovascular Medicine and Science, Royal Brompton Hospital, London, England7INSERM U-1148, Département Hospitalo-Universitaire FIRE (Fibrosis-Inflammation-Remodelling), Université Paris-Diderot, Paris, France8Hôpital Bichat, Assistance Publique-Hôpitaux de Paris, Paris, France.,Department of Pathology, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 12345910111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | hybrid | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.0809 | 2016 | Medical research | NA | c(“fr”, “de”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | The Mystery of the Christmas Tree | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Retired.,Department of Dermatology, University of Munich, Munich, Germany.,Université de Strasbourg and Clinique Dermatologique, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,private practice. | 1234 | NA | NA | 4 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.2524 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Pigment-Synthesizing Melanocytic Neoplasm With Protein Kinase C Alpha (PRKCA) Fusion | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Pathology, St Jude Children’s Research Hospital, Memphis, Tennessee.,Department of Computational Biology, St Jude Children’s Research Hospital, Memphis, Tennessee.,Department of Pathology, Loma Linda University, Loma Linda, California.,Department of Pathology, University of California-Los Angeles.,Department of Pathology, Institute Curie, Paris, France. | 123456789 | NA | NA | 9 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.2707 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Vitiligo With Tumor Response in Patients With Metastatic Melanoma Treated With Pembrolizumab | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Cancer Campus, Gustave Roussy Institute, Villejuif, France.,Department of Early Clinical Development, Cancer Campus, Gustave Roussy Institute, Villejuif, France4Paris-Sud University, Grand Paris, France.,Department of Early Clinical Development, Cancer Campus, Gustave Roussy Institute, Villejuif, France5Institut National de la Santé et de la Recherche Médicale U 981, Cancer Campus, Gustave Roussy Institute, Grand Paris, France.,Biostatistics and Epidemiology Unit, Gustave-Roussy Institute, Villejuif, France7Centre de recherche en épidémiologie et Santé des populations, Institut National de la Santé et de la recherche médicale, Université Paris-Sud, Université de Versailles Saint.,Department of Dermatology, Cancer Campus, Gustave Roussy Institute, Villejuif, France5Institut National de la Santé et de la Recherche Médicale U 981, Cancer Campus, Gustave Roussy Institute, Grand Paris, France. | 123451213141516 | NA | NA | 16 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.2939 | 2016 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Bullous Pemphigoid Associated With Linagliptin Treatment | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, Hotel Dieu de France University Hospital, Beirut, Lebanon2Faculty of Medicine, Saint Joseph University, Beirut Lebanon”),list(name = “Department of Dermatology, Sacre Coeur Hospital, Beirut, Lebanon”) | NA | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.2977 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Visualization of Patients’ Skin Lesions on Their Smartphones | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Infectious and Dermatology Unit, Centre Hospitalier Intercommunal (CHI) Fréjus Saint Raphaël, Fréjus, France.,Department of Statistics, CHI Fréjus Saint Raphaël, Fréjus, France.,Pediatric Dermatology Unit, Centre Hospitalier Universitaire Bordeaux, Université Victor Ségalen, Bordeaux, France.,Department of Dermatology, Hôpital Victor Dupouy, Argenteuil, France.,Department of Dermatology, Hôpital Necker-Enfants Malades, Assistance Publique-Hôpitaux de Paris, Université Paris Descartes, Paris, France.,Pediatric Dermatology Unit, Claude Bernard-Lyon 1 University and Hospices Civils de Lyon, Hôpital Femme-Mère-Enfant, Lyon, France. | 12345678 | NA | NA | 8 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.3999 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Nevus Anemicus and Bier Spots in Tuberous Sclerosis Complex | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Faculté de Médecine, Université de Strasbourg, Strasbourg, France2Clinique Dermatologique, Hôpitaux Universitaires de Strasbourg, Strasbourg, France. | 12 | NA | NA | 2 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.4134 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Complete Remission of Squamous Cell Carcinoma After Treatment With Panitumumab in a Patient With Cetuximab-Induced Anaphylaxis | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Dermatology Department, CHU de Bordeaux, University of Bordeaux, Bordeaux, France.,Radiotherapy Department, CHU de Bordeaux, Hôpital Haut Lévêque, Bordeaux France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.4241 | 2016 | Humanities | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | ru | The Emperor’s Itch | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology and Cutaneous Surgery, University of Miami Miller School of Medicine, Miami, Florida”) | NA | NA | NA | 5 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2015.4359 | 2016 | Biology (fond.) | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Genetic Testing for Melanoma—Where Are We With Moderate-Penetrance Genes? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Département de Biopathologie, Gustave Roussy, Villejuif, France2INSERM U1186, Université Paris-Sud, Université Paris-Saclay, Villejuif, France”),list(name = “Service de Dermatologie, CHU Dijon-Bourgogne, Dijon, France4EA4271 Génétique des Anomalies du Développement, FHU Translad, Université de Bourgogne Franche-Comté, Dijon, France”),list(name = “Service de Dermatologie, Centre Hospitaliser Lyon Sud, Pierre Bénite, France6Université Claude Bernard Lyon 1, Villeurbanne, France7Centre de Recherche sur le Cancer de Lyon, INSERM U1052–CNRS UMR5286, Centre Léon Bérard, Lyon, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2015.5827 | 2016 | Medical research | NA | c(“fr”, “fi”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Intrafamily and Interfamilial Phenotype Variation and Immature Immunity in Patients With Netherton Syndrome and FinnishSPINK5Founder Mutation | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology and Allergology, University of Helsinki and Helsinki University Hospital, Helsinki, Finland2Folkhälsan Institute of Genetics, University of Helsinki, Helsinki, Finland.,Department of Dermatology, Tampere University Hospital, Tampere, Finland.,Hematology Research Unit Helsinki, Department of Clinical Chemistry and Hematology, University of Helsinki and Helsinki University Hospital Comprehensive Cancer Center, Helsinki, Finland.,Laboratory of Genetic Skin Diseases, Institut National de la Santé et de la Recherche Medicale, Unité Mixte de Recherche 1163, Paris, France6Imagine Institute, Paris Descartes University-Sorbonne Paris Cité, Paris, France.,Department of Dermatology, Seinäjoki Central Hospital, Seinäjoki, Finland.,Department of Dermatology and Allergology, University of Helsinki and Helsinki University Hospital, Helsinki, Finland.,Laboratory of Genetic Skin Diseases, Institut National de la Santé et de la Recherche Medicale, Unité Mixte de Recherche 1163, Paris, France6Imagine Institute, Paris Descartes University-Sorbonne Paris Cité, Paris, France11Department of Genetics, Necker H. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2016.0027 | 2016 | Medical research | NA | c(“us”, “it”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Total Nevi, Atypical Nevi, and Melanoma Thickness | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Social and Behavioral Sciences, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Johns Hopkins Bayview Medical Center, The Johns Hopkins University School of Medicine, Baltimore, Maryland.,Department of Dermatology, Massachusetts General Hospital, Boston.,Department of Health Policy and Management, Boston University School of Public Health, Boston, Massachusetts.,Dermatology Unit, Second University of Naples, Naples, Italy.,Department of Dermatology, University of Michigan, Ann Arbor.,Dermatology Service, Veterans Affairs Palo Alto Health Care System, Palo Alto, California8Department of Dermatology, Pigmented Lesion and Melanoma Program, Stanford University Medical Center and Cancer Institute, Stanford, California. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2016.0063 | 2016 | Medical research | NA | c(“gr”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Preventing Syphilis in the 20th Century—The Metchnikoff Pomade | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University Institute of History of Medicine, Claude Bernard University, Lyon, France.,Department of Medical Biopathology, Aeginition Hospital, Medical School, National and Kapodistrian University of Athens, Athens, Greece. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.0094 | 2016 | Biology (fond.) | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Sticky Palms Following Use of Proton-Pump Inhibitors | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | King Khalid University Hospital, Riyadh, Saudi Arabia2King Saud University, College of Medicine, Riyadh, Saudi Arabia3Department of Dermatology, University Hospital of Lille, France.,Department of Dermatology, University Hospital of Lille, France4College of Medicine, Lille 2 University, Lille, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 1 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.0401 | 2016 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy and Safety of APO866 in Patients With Refractory or Relapsed Cutaneous T-Cell Lymphoma | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, University Hospital of Zurich, Zurich, Switzerland”),list(name = “Department of Dermatology, University Hospital of Zurich, Zurich, Switzerland2Private Practice, Feldmeilen, Switzerland”),list(name = “Department of Dermatology, Medical University of Graz, Graz, Austria”),list(name = “Department of Dermatology, University Medical Center Mannheim, University of Heidelberg, Heidelberg, Germany”),list(name = “Department of Dermatology, Nantes University Hospital, Nantes, France”),list(name = “Henri Mondor Hospital, Université Paris-Est Créteil Val de Marne (UPEC), Créteil, France”) | NA | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2016.1008 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Life-Threatening Cutaneous Bleeding in Childhood Klippel-Trenaunay Syndrome Treated With Oral Sirolimus | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | hal-01868352 | 1 | NA | NA | 4 | hybrid | NA | Department of Dermatology, Saint-Eloi Hospital, University Hospital of Montpellier, Montpellier, France2University of Montpellier, Montpellier, France3INSERM U1058, Montpellier, France.,Department of Radiology, Lapeyronie Hospital, University Hospital of Montpellier, Montpellier, France.,Department of Pediatric Infantile Surgery, Lapeyronie Hospital, University Hospital of Montpellier, Montpellier, France.,Department of Internal Medicine, Saint-Eloi Hospital, University Hospital of Montpellier, Montpellier, France.,Department of Pediatric Oncology and Hematology, Arnaud de Villeneuve Hospital, University Hospital of Montpellier, Montpellier, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.2338 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Treatment of Generalized Deep Morphea With Everolimus | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Dermatology Department, Saint-Louis Hospital, Paris, France.,Dermatology Department, Saint-Louis Hospital, Paris, France2Paris VII Sorbonne Paris Cité University, Paris, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.2426 | 2016 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Dermoscopic Evaluation of Melanocytic Nevi Changes With Combined Mitogen-Activated Protein Kinase Pathway Inhibitors Therapy for Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Cancer Research Center of Lyon, Lyon, France”),list(name = “Department of Dermatology, Centre Hospitalier Lyon-Sud, Hospices Civils de Lyon, Lyon, France”) | NA | NA | NA | 7 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.2667 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Proliferative Nodules vs Melanoma Arising in Giant Congenital Melanocytic Nevi During Childhood | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Pathology and Molecular Pathology, Hôpital Haut-Lévêque, Centre Hospitalier Universitaire Bordeaux, Pessac, France2Institut National de la Santé et de la Récherche Médicale U1053-UMR, Bordeaux Research In Translational Oncology, Bordeaux University, Bordeaux, France.,Department of Pathology, Centre Léon Bérard, Lyon, France.,Department of Dermatology, Cochin Hospital, Assistance Publique-Hôpitaux de Paris, Paris-Descartes-Sorbonne University, Paris, France7Department of Pathology, Necker-Enfants Malades Hospital, Paris, France.,Department of Dermatology, Centre Hospitalier Universitaire Bordeaux, Bordeaux University, Pessac, France. | 12345910111213 | NA | NA | 13 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.2872 | 2016 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Facial Erythematous Papules in a Young Woman | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Dermatology Department, CHU Bordeaux, Bordeaux University, Bordeaux, France.,Department of Dermatopathology, Faculty of Medicine and University Hospital, Strasbourg, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.2905 | 2016 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Risk Factors for Degree and Type of Sequelae After Involution of Untreated Hemangiomas of Infancy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Dermatology, Hospital de la Santa Creu i Sant Pau, Universitat Autònoma de Barcelona, Barcelona, Spain”),list(name = “Center for Vascular Anomalies, Division of Plastic Surgery, Cliniques Universitaires St Luc, Brussels, Belgium”),list(name = “Division of Dermatology (Pediatrics) CHU Sainte-Justine, University of Montreal, Montreal, Canada”),list(name = “Department of Dermatology, Hospital Infantil Universitario del Niño Jesús, Madrid, Spain”),list(name = “Department of Clinical Epidemiology; CIM-Caiber-IIb Sant Pau, Barcelona Spain”) | NA | NA | NA | 9 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.6058 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of Off-label Drug Use and Adverse Drug Events in an Adult Population | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Epidemiology, Biostatistics, and Occupational Health, McGill University, Montreal, Quebec, Canada2Department of Medicine, McGill University, Montreal, Quebec, Canada3Division of General Medicine and Primary Care, Brigham and Women’s Hospital”),list(name = “Department of Epidemiology, Biostatistics, and Occupational Health, McGill University, Montreal, Quebec, Canada2Department of Medicine, McGill University, Montreal, Quebec, Canada”),list(name = “Department of Epidemiology, Biostatistics, and Occupational Health, McGill University, Montreal, Quebec, Canada”),list(name = “Department of Medicine, McGill University, Montreal, Quebec, Canada”),list(name = “Department of Epidemiology, Biostatistics, and Occupational Health, McGill University, Montreal, Quebec, Canada5Department of Mathematics and Statistics, McGill University, Montreal, Quebec, Canada”) | NA | NA | NA | 7 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.7088 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Prescription Strategies in Acute Uncomplicated Respiratory Infections | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Doctor Carles Ribas Primary Care Center, Barcelona, Spain”),list(name = “Iberoamerican Cochrane Center, Biomedical Research Institute Sant Pau, Barcelona, Spain”),list(name = “Irurtzun Primary Care Center, Irurtzun, Spain”),list(name = “Vicente Muzas Primary Care Center, Madrid, Spain5Red de investigación en Servicios de Salud en Enfermedades Crónicas, Spain6Evidence-Based Medicine Group, SemFYC, Spain”),list(name = “Monovar Primary Care Center, Madrid, Spain”),list(name = “Sant Roc Primary Care Center, Badalona, Spain”),list(name = “Via Roma Primary Care Center, Barcelona, Spain”),list(name = “Aldermoor Primary Care Center, Aldermoor Close, Southampton, United Kingdom”),list(name = “Iberoamerican Cochrane Center, Biomedical Research Institute Sant Pau, Barcelona, Spain6Evidence-Based Medicine Group, SemFYC, Spain15CIBER de Epidemiología y Salud Pública, Spain”) | NA | NA | NA | 15 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.7415 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Cardiopulmonary Resuscitation and Benefit to Patients With Metastatic Cancer | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Medical Intensive Care Unit, Cochin University Hospital, AP-HP, Paris, France”),list(name = “Polyvalent Intensive Care Unit, GHIC Le Raincy-Montfermeil, Montfermeil, France”) | NA | NA | NA | 4 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2015.7712 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Effectiveness of Remote Patient Monitoring After Discharge of Hospitalized Patients With Heart Failure | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Medicine, University of California, Los Angeles2Department of Medicine, Veterans Affairs Greater Los Angeles Healthcare System, Los Angeles, California”),list(name = “Department of Internal Medicine, University of California, Davis4Department of Pediatrics, University of California, Davis”),list(name = “Department of Medicine, University of California, Los Angeles”),list(name = “Office of Nursing Research and Development, Cedars-Sinai Medical Center, Los Angeles, California”),list(name = “Department of Medicine, University of California, San Francisco”),list(name = “Department of Internal Medicine, University of California, Davis”),list(name = “Department of Computer Science, University of California, Los Angeles19Department of Electrical Engineering, University of California, Los Angeles”) | NA | NA | NA | 24 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2015.7980 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Biomarkers in the Diagnosis of ST-Segment Elevation Myocardial Infarction | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Departement de Cardiologie et Maladies Vasculaires, CHU de Rennes, Rennes, France”) | NA | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.0137 | 2016 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Characteristics and Public Availability of Results of Clinical Trials on Rare Diseases Registered at Clinicaltrials.gov | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre de Recherche Epidémiologie et Statistique, INSERM U1153, Paris, France2Centre d’Epidémiologie Clinique, Hôpital Hôtel-Dieu, Assistance Publique-Hôpitaux de Paris, Paris, France3Faculté de Médecine, Université Paris Descartes, Sorbonne Paris Cité, P.,Centre de Recherche Epidémiologie et Statistique, INSERM U1153, Paris, France2Centre d’Epidémiologie Clinique, Hôpital Hôtel-Dieu, Assistance Publique-Hôpitaux de Paris, Paris, France.,medical student at Faculté de Médecine, Université Paris Descartes, Sorbonne Paris Cité, Paris, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.0351 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Balancing Accelerated Approval for Drugs With Accelerated Withdrawal | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Alcohol Treatment Unit, University Hospital of Amiens, Amiens, France”),list(name = “Waikato Clinical School, University of Auckland, Auckland, New Zealand”) | NA | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.0482 | 2016 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Dietary Patterns and Fractures in Postmenopausal Women | 1 | 3748.408 | openAPC_estimation_publisher | NA | NA | 3748.408 | 103 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Internal Medicine I, Comprehensive Heart Failure Center, University of Würzburg, Würzburg, Bavaria, Germany”),list(name = “Department of Medicine, David Geffen School of Medicine, UCLA (University of California at Los Angeles)”),list(name = “Women’s Health Initiative, Fred Hutchinson Cancer Center, Seattle, Washington”),list(name = “Kaiser Permanente Center for Health Research Northwest, Portland, Oregon”),list(name = “Division of Preventive Medicine, School of Medicine, University of Alabama at Birmingham”),list(name = “Division of Biostatistics and Epidemiology, Department of Preventive Medicine, College of Medicine, University of Tennessee Health Science Center, Memphis”),list(name = “Department of Epidemiology and Environmental Health, State University of New York at Buffalo”),list(name = “Division of Preventive and Behavioral Medicine, Department of Medicine, University of Massachusetts Medical School, Worcester”),list(name = “Department of Epidemiology, Graduate School of Public Health, University of Pittsburgh, Pittsburgh, Pennsylvania”),list(name = “Department of Epidemiology and Population Health, Albert Einstein College of Medicine, Bronx, New York”) | NA | NA | NA | 12 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
import_manips(2017)
Temps d’exécution de l’import des données : 1.45 secs.
Dimensions du jeu de données : 130948 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/jama.2016.19262 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Clinical Guidelines for Management of Acne Vulgaris | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Bichat Claude Bernard Hospital, Paris, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.19456 | 2017 | Medical research | NA | c(“de”, “fr”, “il”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Etelcalcetide vs Placebo on Serum Parathyroid Hormone in Patients Receiving Hemodialysis With Secondary Hyperparathyroidism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Denver Nephrology, Denver, Colorado.,University of Rochester, Rochester, New York.,University College London, London, England.,Inserm, Université de Picardie, Amiens, France.,Klinikum Coburg-GmbH, Coburg, Germany.,Hadassah Hebrew University Medical Center, Jerusalem, Israel.,Amgen Inc, Thousand Oaks, California.,Stanford University, Stanford, California. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.19468 | 2017 | Medical research | NA | c(“de”, “fr”, “gb”, “il”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Etelcalcetide vs Cinacalcet on Serum Parathyroid Hormone in Patients Receiving Hemodialysis With Secondary Hyperparathyroidism | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Denver Nephrology, Denver, Colorado.,University of Rochester, Rochester, New York.,Amgen Inc, Thousand Oaks, California.,University College London, London, United Kingdom.,Duke University, Durham, North Carolina.,Hadassah Hebrew University Medical Center, Jerusalem, Israel.,Stanford University, Stanford, California. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.19829 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Therapeutic Hypothermia After Cardiac Arrest | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sudden Death Expertise Center, Paris Cardiovascular Research Center, INSERM Unit 970, Paris, France,Emergency Department, Cochin Hospital, Paris, France,Medical Intensive Care Unit, Cochin Hospital, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.20325 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Screening for Obstructive Sleep Apnea in Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of California, San Francisco”),list(name = “Group Health Research Institute, Seattle, Washington”),list(name = “University of Iowa, Iowa City”),list(name = “Columbia University, New York, New York”),list(name = “University of Washington, Seattle”),list(name = “Brown University, Providence, Rhode Island”),list(name = “University of Texas at Austin”),list(name = “Boston University, Boston, Massachusetts”),list(name = “University of Hawaii, Manoa”) | NA | NA | NA | 18 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2016.20329 | 2017 | Medical research | NA | c(“fr”, “gb”, “ch”, “es”, “mc”, “be”) | 0098-7484 | 0098-7484 | JAMA | en | Prognostic Accuracy of Sepsis-3 Criteria for In-Hospital Mortality Among Patients With Suspected Infection Presenting to the Emergency Department | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01484589 | 1 | NA | NA | 4 | subscription | NA | Sorbonne Universités, UPMC Paris Univ-06, Paris, France2Emergency Department, Hôpital Pitie-Salpêtrière, Assistance Publique-Hôpitaux de Paris (APHP), Paris, France.,Emergency Department, Hôpital Pitie-Salpêtrière, Assistance Publique-Hôpitaux de Paris (APHP), Paris, France.,Plateforme de recherche clinique de l’est parisien (URCEST-CRCEST), Hôpital St Antoine, APHP, Paris, France.,Emergency Department, Cliniques Universitaires St Luc, Bruxelles, Belgium.,Emergency Department, Princess Grace Hospital, Monte-Carlo, Monaco.,Emergency Department, CHUV, Lausanne, Switzerland.,Emergency Department, Barts Health NHS trust, London, United Kingdom.,Emergency Department, Hôpital Ambroise-Paré, Boulogne, France, and Paris Diderot University, INSERM UMRS 1144, Paris, France. | 123451415161718 | NA | NA | 18 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2016.20603 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Video Laryngoscopy vs Direct Laryngoscopy on Successful First-Pass Orotracheal Intubation Among ICU Patients | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Medical-Surgical Intensive Care Unit, District Hospital Centre, La Roche-sur-Yon, France.,Service de Réanimation Médicale, Nouvel Hôpital Civil, Hôpitaux Universitaires de Strasbourg, Strasbourg, France3EA 7293, Fédération de Médecine Translationnelle de Strasbourg, Faculté de Médecine, Université de Strasbourg, Strasbourg, France.,Clinical Research Unit, District Hospital Centre, La Roche-sur-Yon, France5Delegation a la Recherche Clinique et a l’Innovation-CHU Hotel Dieu, Nantes, France.,Medical Intensive Care Unit, Regional Hospital Centre, Orleans, France.,APHP Hôpital Saint Louis, Service de Réanimation Médicale, Paris, France.,Medical Intensive Care Unit, Cochin University Hospital Centre, Paris, France.,Medical Intensive Care Unit, University Hospital Centre, Nantes, France13EA 3826, Clinical and Experimental Treatments for Infections, University of Medicine, Nantes, France. | 123451415161718 | NA | NA | 18 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.0130 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Collaborative Care vs Usual Care on Depressive Symptoms in Older Adults With Subthreshold Depression | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Health Sciences, University of York, Heslington, England2Hull York Medical School, University of York, Heslington, England”),list(name = “Department of Health Sciences, University of York, Heslington, England”),list(name = “Leeds and York Partnership NHS Foundation Trust, Leeds, England”),list(name = “Leeds Institute of Health Sciences, University of Leeds, Leeds, England”),list(name = “Department of Urban Studies and Planning, University of Sheffield, Sheffield, England”) | NA | NA | NA | 32 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.11387 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Physician Notification Regarding Nonadherence to Colorectal Cancer Screening on Patient Participation in Fecal Immunochemical Test Cancer Screening | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of General Practice, Faculty of Medicine, Nantes, France.,French National Institute of Health and Medical Research, INSERM U1232 - Team 2, Nantes, France.,Association in charge of colorectal cancer screening program, CAPSANTE 44, Nantes, France.,French Health Insurance System, Division of Nantes, Nantes, France.,Cancer registry for Loire-Atlantique and Vendée geographic areas, Nantes, France.,Department of Epidemiology and Biostatistics, Nantes University Hospital, Nantes, France. | 12346789 | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.11389 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Colonoscopy Outreach vs Fecal Immunochemical Test Outreach on Colorectal Cancer Screening Completion | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Internal Medicine, University of Texas Southwestern Medical Center, Dallas2Parkland Health and Hospital System, Dallas, Texas3Department of Clinical Sciences, University of Texas Southwestern Medical Center, Dallas4Harold C. Simmons Comprehensive Cancer Center, University of Texas Southwestern Medical Center, Dallas”),list(name = “Division of Gastroenterology, Veterans Affairs San Diego Health Care System, San Diego, California6Department of Internal Medicine, Moores Cancer Center, University of California, San Diego, La Jolla”),list(name = “Department of Clinical Sciences, University of Texas Southwestern Medical Center, Dallas4Harold C. Simmons Comprehensive Cancer Center, University of Texas Southwestern Medical Center, Dallas”),list(name = “Parkland Health and Hospital System, Dallas, Texas”),list(name = “Department of Clinical Sciences, University of Texas Southwestern Medical Center, Dallas”) | NA | NA | NA | 14 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.11467 | 2017 | Medical research | NA | c(“us”, “au”, “fr”, “gb”, “it”, “de”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Genetic Variants Related to CETP Inhibitors and Statins With Lipoprotein Levels and Cardiovascular Risk | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiovascular Medicine, Wayne State University School of Medicine, Detroit, Michigan.,Institute for Advanced Studies, University of Bristol, Bristol, United Kingdom.,Department of Vascular Medicine, Academic Medical Center, University of Amsterdam, Amsterdam, the Netherlands.,Irving Institute for Clinical and Translational Research, Columbia University College of Physicians and Surgeons, New York, New York.,National Institute for Health and Medical Research (INSERM), Pitie-Salpetriere University Hospital, Paris, France.,National Institute for Health Research Blood and Transplant Research Unit in Donor Health and Genomics, University of Cambridge, Cambridge, United Kingdom.,Wellcome Trust Sanger Institute, Hinxton, United Kingdom.,MRC Integrative Epidemiology Unit, University of Bristol, Bristol, United Kingdom.,Department of Pharmacological and Biomolecular Sciences, University of Milan and Multimedica IRCCS, Milano, Italy.,Thrombolysis in Myocardial Infarction (TIMI) Study Group, Division of Cardiovascular Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts. | 123412131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.13759 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | PET Scans With 18F-Fluorodeoxyglucose to Diagnose Adrenal Tumors—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Nuclear Medicine, Aix-Marseille University, Marseille, France,Section on Medical Neuroendocrinology, National Institute of Child Health and Human Development, Bethesda, Maryland | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.13815 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Public Reporting of Surgical Outcomes: Surgeons, Hospitals, or Both? | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Ashish K. Jha, MD, MPH, is K. T. Li Professor of International Health and Health Policy at the Harvard T. H. Chan School of Public Health and a practicing internist at the Veterans Affairs Boston Healthcare System | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.13889 | 2017 | Medical research | NA | c(“fr”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Systematic Intensive Care Unit Triage on Long-term Mortality Among Critically Ill Elderly Patients in France | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Assistance Publique-Hôpitaux de Paris (AP-HP), Hôpital Saint-Antoine, Service de Réanimation Médicale, Paris, France.,Sorbonne Universités, Université Pierre et Marie Curie, Paris, France.,Institut National de la Santé et de la Recherche Médicale (INSERM), UMR S 1136, Institut Pierre Louis d’Épidémiologie et de Santé Publique, Paris, France.,Department of Anesthesiology and Critical Care, Université Laval, Québec City, Québec, Canada.,AP-HP, Hôpital Ambroise Paré, Unité de Recherche Clinique Paris Île-de-France Ouest, Boulogne-Billancourt, 92104, France.,AP-HP, Hôpital Saint-Antoine, SAU, Paris, France. | 1219202122 | NA | NA | 22 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.14172 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Individualized vs Standard Blood Pressure Management Strategies on Postoperative Organ Dysfunction Among High-Risk Patients Undergoing Major Surgery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01730466 | 1 | NA | NA | 4 | subscription | NA | Département de Médecine Périopératoire, Université Clermont Auvergne, Centre national de la recherche scientifique, Inserm, Centre Hospitalier Universitaire Clermont-Ferrand, Clermont-Ferrand, France.,Section d’Anesthésie and Département Anesthésie et Réanimation, Centre Hospitalier Universitaire Nîmes, Nîmes, France.,Département Anesthésie et Réanimation, Centre Hospitalier Universitaire Amiens, Amiens, France.,Biostatistic Unit, Centre Hospitalier Universitaire Clermont-Ferrand, Direction de la Recherche Clinique, Clermont-Ferrand, France.,Département Anesthésie et Réanimation B, Centre Hospitalier Universitaire Montpellier, Hôpital Saint-Eloi, and INSERM U-1046, Montpellier, France. | 123451617181920 | NA | NA | 20 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.14585 | 2017 | Medical research | NA | c(“nl”, “de”, “qa”, “by”, “tr”, “pe”, “es”, “ca”, “il”, “gb”, “fr”, “fi”, “cn”) | 0098-7484 | 0098-7484 | JAMA | en | Diagnostic Assessment of Deep Learning Algorithms for Detection of Lymph Node Metastases in Women With Breast Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Diagnostic Image Analysis Group, Department of Radiology and Nuclear Medicine, Radboud University Medical Center, Nijmegen, the Netherlands.,Medical Image Analysis Group, Eindhoven University of Technology, Eindhoven, the Netherlands.,Department of Pathology, University Medical Center Utrecht, Utrecht, the Netherlands.,Visilab, University of Castilla-La Mancha, Ciudad Real, Spain.,INSERM, Laboratoire d’Imagerie Biomédicale, Sorbonne Universiteś, Pierre and Marie Curie University, Paris, France.,Pontifical Catholic University of Peru, San Miguel, Lima, Peru.,Sorbonne University, Pierre and Marie Curie University, Paris, France. | 123456869708 | NA | NA | 70 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.1462 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Screening for Celiac Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of California, San Francisco”),list(name = “Group Health Research Institute, Seattle, Washington”),list(name = “University of Iowa, Iowa City”),list(name = “Harvard Medical School, Boston, Massachusetts”),list(name = “University of California, Los Angeles”),list(name = “Brown University, Providence, Rhode Island”),list(name = “Boston University, Boston, Massachusetts”),list(name = “Northwestern University, Evanston, Illinois”),list(name = “University of Hawaii, Manoa”) | NA | NA | NA | 19 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.16071 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association Between Use of Thiopurines or Tumor Necrosis Factor Antagonists Alone or in Combination and Risk of Lymphoma in Patients With Inflammatory Bowel Disease | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology, Agence Nationale de Sécurité du Médicament et des produits de santé (ANSM), Saint-Denis, France.,Sorbonne Universités, UPMC Univ Paris 06, INSERM, Institut Pierre Louis d’Epidémiologie et de Santé Publique, UMR_S 1136, F-75012, Paris, France.,Department of Gastroenterology, Hôpital Saint Antoine, Assistance Publique-Hôpitaux de Paris, Paris, France.,Department of Public Health, Hôpital Saint Antoine, AP-HP, F-75012, Paris, France.,Department of Gastroenterology, Hôpitaux Universitaires Paris Sud, Assistance Publique-Hôpitaux de Paris, Université Paris-Sud, Le Kremlin Bicêtre, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.16591 | 2017 | Medical research | NA | c(“ca”, “fr”, “nl”, “pl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Varying Doses of Epicutaneous Immunotherapy vs Placebo on Reaction to Peanut Protein Exposure Among Patients With Peanut Sensitivity | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Icahn School of Medicine at Mount Sinai, New York, New York.,DBV Technologies, Montrouge, France.,Massachusetts General Hospital for Children, Boston.,University of Ottawa Medical School, Ottawa, Ontario, Canada.,University of Toronto, Toronto, Ontario, Canada.,Hôpitaux de Brabois, University of Lorraine, Vandœuvre-lès-Nancy, France.,Boston Children’s Hospital, Boston, Massachusetts.,Medical University of Lodz, Lodz, Poland.,Hôpital Necker, Enfants Malades, Paris, France.,Université Paris-Descartes, Paris, France. | 123421222324 | NA | NA | 24 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.17236 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Azithromycin and Survival After Hematopoietic Stem Cell Transplant—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Pneumologie, AP-HP, Hôpital Saint-Louis, Paris, France,Université Paris Diderot, UMR 1153 CRESS, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.17488 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association of High-Sensitivity Cardiac Troponin I Concentration With Cardiac Outcomes in Patients With Suspected Acute Coronary Syndrome | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “BHF Centre for Cardiovascular Science, University of Edinburgh, Edinburgh, Scotland”),list(name = “Institute of Health and Wellbeing, University of Glasgow, Glasgow, Scotland”),list(name = c(“Department of Emergency Medicine, Royal Brisbane and Women’s Hospital, Brisbane, Australia”, “School of Medicine, University of Queensland, Brisbane, Australia”, “Faculty of Health, Queensland University of Technology, Brisbane, Australia”)),list(name = “Hennepin County Medical Center and Minneapolis Heart Institute, Abbott Northwestern Hospital, Minneapolis, Minnesota”),list(name = “Department of Laboratory Medicine and Pathology, Hennepin County Medical Center and University of Minnesota, Minneapolis”) | NA | NA | NA | 37 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.17923 | 2017 | Medical research | NA | c(“fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Short-term Exposure to Air Pollution With Mortality in Older Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Environmental Health, Harvard T.H. Chan School of Public Health, Boston, Massachusetts,Department of Biostatistics, Harvard T.H. Chan School of Public Health, Boston, Massachusetts | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.17924 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of High-Cutoff Hemodialysis vs Conventional Hemodialysis on Hemodialysis Independence Among Patients With Myeloma Cast Nephropathy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Nephrology, Institut National de la Santé et de la Recherche Médicale, Centre d’Investigation Clinique 1402, Centre Hospitalier Universitaire, Poitiers, France.,Centre de Référence Maladies Rares, Poitiers, France.,Centre National de la Recherche Scientifique, Unite Mixte de Recherche 7276, Université de Limoges, Limoges, France.,Department of Nephrology, Centre Hospitalier Universitaire, Grenoble, France.,Department of Hematology, Centre Hospitalier Universitaire, Grenoble, France.,Department of Nephrology, Centre Hospitalier Universitaire, Strasbourg, France.,Department of Nephrology, Hôpital Necker, Assistance Publique Hôpitaux de Paris, Paris, France.,Department of Biostatistics and Medical Information, Institut National de la Santé et de la Recherche Médicale, Unite Mixte de Recherche 1153 (ECSTRA Team), Paris Diderot University, Hôpital Saint-Louis, Assistance Publique Hôpitaux de Paris, Paris, France.,Department of Hematology and Immunology, Institut National de la Santé et de la Recherche Médicale, Unité Mixte de Recherche 1126, Hôpital Saint-Louis, Assistance Publique Hôpitaux de Paris, Paris, France. | 1231920212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.18718 | 2017 | Medical research | NA | c(“es”, “se”, “fr”, “il”, “it”, “ch”, “ge”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Tumor-Treating Fields Plus Maintenance Temozolomide vs Maintenance Temozolomide Alone on Survival in Patients With Glioblastoma | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Lou and Jean MalnatiBrain Tumor Institute of the Robert H. Lurie Comprehensive Cancer Center of Northwestern University Feinberg School of Medicine, Chicago, Illinois,Centre Hospitalier Universitaire Vaudois and University of Lausanne, Lausanne, Switzerland,University Hospital Zurich and University of Zurich, Zurich, Switzerland,Inserm U 1127, CNRS UMR 7225, Sorbonne Universités, UPMC Univ Paris 06 UMR S 1127, Institut du Cerveau et de la Moelle épinière, ICM, F-75013, Paris, France,Tel Aviv Medical Center, Tel Aviv, Israel,Juravinski Cancer Centre, Hamilton, Ontario, Canada,Novocure Ltd, Israel | 1232526272829 | NA | NA | 29 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.1964 | 2017 | Medical research | NA | c(“us”, “ge”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Vital Directions for Health and Health Care | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | National Academy of Medicine, Washington, DC.,Robert J. Margolis, MD, Center for Health Policy, Duke University, Washington, DC.,Malcolm Wiener Center for Social Policy, John F. Kennedy School of Government, Harvard University, Cambridge, Massachusetts.,AVIA, Chicago, Illinois.,UnitedHealth Group, Minnetonka, Minnesota.,University of Southern California, Los Angeles.,xG Health Solutions, Columbus, Maryland.,American Organization of Nurse Executives, Chicago, Illinois.,Global Research and Development, Sanofi, Paris, France. | 123451516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.2332 | 2017 | Medical research | NA | c(“gb”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between Long-term Quinine Exposure and All-Cause Mortality | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | EA 7379 EpiDermE, Université Paris Est Créteil, Créteil, France.,Department of Primary Care and Population Health, University College London, London, United Kingdom. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.2692 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association Between Early Low-Dose Hydrocortisone Therapy in Extremely Preterm Neonates and Neurodevelopmental Outcomes at 2 Years of Age | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Neonatal Intensive Care Unit, Assistance Publique-Hôpitaux de Paris, Robert Debré Children’s Hospital, Paris, France2Université Paris Diderot, Sorbonne Paris-Cité, Inserm U1141, Paris, France.,Neonatal Intensive Care Unit, Assistance Publique-Hôpitaux de Paris, Robert Debré Children’s Hospital, Paris, France.,Unit of Clinical Epidemiology, Assistance Publique-Hôpitaux de Paris, Robert Debré Children’s Hospital, University Paris Diderot, Sorbonne Paris-Cité, Inserm U1123 and CIC-EC 1426, Paris, France. | 1234567 | NA | NA | 7 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.3417 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Oral Dexamethasone Without Immediate Antibiotics vs Placebo on Acute Sore Throat in Adults | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Nuffield Department of Primary Care Health Sciences, University of Oxford, United Kingdom”),list(name = “Centre for Academic Primary Care, NIHR School for Primary Care Research, School of Social and Community Medicine, University of Bristol, Bristol, United Kingdom”),list(name = “Primary Care and Population Sciences, University of Southampton, Aldermoor Health Centre, Aldermoor Close, Southampton, United Kingdom”),list(name = “Nuffield Department of Population Health, University of Oxford, United Kingdom”) | NA | NA | NA | 14 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.3438 | 2017 | Medical research | NA | c(“it”, “be”, “fr”, “de”, “gb”, “nl”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Selumetinib Plus Docetaxel Compared With Docetaxel Alone and Progression-Free Survival in Patients With KRAS-Mutant Advanced Non–Small Cell Lung Cancer | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Lowe Center for Thoracic Oncology and the Belfer Center for Applied Cancer Science, Dana-Farber Cancer Institute, Boston, Massachusetts.,Department of Thoracic Oncology, Netherlands Cancer Institute, Amsterdam, the Netherlands.,Multidisciplinary Oncology and Therapeutic Innovations Department, Aix Marseille University, Assistance Publique Hôpitaux de Marseille, Marseille, France.,Department of Medical Oncology, Hospital Universitario Málaga General, Instituto de Investigación Biomédica de Málaga, Malaga, Spain.,Pulmonology Department, Toulouse University Hospital, Toulouse, France.,AstraZeneca, Cambridge, United Kingdom.,AstraZeneca, Gaithersburg, Maryland.,Respiratory Oncology Unit, Department of Respiratory Diseases, University Hospital Katholieke Universiteit Leuven, Leuven, Belgium. | 123451617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.3511 | 2017 | Medical research | NA | c(“fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Use of the qSOFA Score in the Emergency Department—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sorbonne Universités, UPMC Paris Univ-06, Paris, France,Emergency Department, Royal London Hospital, London, United Kingdom | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.3635 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Association of Gestational Weight Gain With Maternal and Infant Outcomes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Monash Centre for Health Research and Implementation, Monash University, Victoria, Australia2Monash Diabetes and Endocrine Units, Monash Health, Victoria, Australia”),list(name = “Monash Centre for Health Research and Implementation, Monash University, Victoria, Australia”),list(name = “Dankook University College of Medicine, Seoul, Republic of Korea”),list(name = “Department of Development and Regeneration KU Leuven, University of Leuven, Leuven, Belgium14Faculty of Medicine and Health Sciences, Centre for Research and Innovation in Care, University of Antwerp, Antwerp, Belgium15Faculty of Health and Social Work, Research Unit Healthy Living, UC Leuven-Limburg, Leuven, Belgium”),list(name = “Department of Obstetrics and Gynaecology, University Hospitals KU Leuven, Leuven, Belgium17Department of Obstetrics, Gynaecology and Fertility, GZA Campus Sint-Augustinus, Wilrijk, Belgium”),list(name = “University of California, Irvine”) | NA | NA | NA | 18 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.4360 | 2017 | Medical research | NA | c(“br”, “de”, “my”, “gb”, “fr”, “pe”, “es”, “au”, “cn”, “ca”, “pl”, “co”, “ar”, “za”, “in”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Postoperative High-Sensitivity Troponin Levels With Myocardial Injury and 30-Day Mortality Among Patients Undergoing Noncardiac Surgery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | McMaster University, Hamilton, Ontario, Canada.,University of Cape Town, Cape Town, South Africa.,Narayana Hrudayalaya Limited, Bangalore, Karnataka, India.,St John’s Medical College and Research Institute, Bangalore, India.,Chinese University of Hong Kong, Hong Kong Special Administrative Region, China.,Hospital Universitario Austral, Pilar, Buenos Aires, Argentina.,Mayo Clinic, Rochester, Minnesota. | 23456515253541 | NA | NA | 54 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.4451 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Home Noninvasive Ventilation With Oxygen Therapy vs Oxygen Therapy Alone on Hospital Readmission or Death After an Acute COPD Exacerbation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Lane Fox Unit, Guy’s and St Thomas’ NHS Foundation Trust, London, England2Asthma, Allergy, and Lung Biology, King’s College London, London, England”),list(name = “MRC Clinical Trials Unit at University College London, Institute of Clinical Trials and Methodology, London, England”),list(name = “Lane Fox Unit, Guy’s and St Thomas’ NHS Foundation Trust, London, England”),list(name = “Respiratory Medicine, Northumbria Healthcare NHS Foundation Trust, Newcastle, England5Institute of Cellular Medicine, Newcastle University, Newcastle, England”),list(name = “School of Aging and Chronic Disease, University of Liverpool, Liverpool, England”),list(name = “Oxford NIHR Biomedical Research Centre, Oxford University and NHS Foundation Trust, Oxford, England”),list(name = “NIHR Respiratory Biomedical Research Unit, Royal Brompton and Harefield NHS Foundation Trust and Imperial College, London, England”),list(name = “Department of Respiratory Medicine, Leeds University Hospital, Leeds, England”) | NA | NA | NA | 23 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.4486 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Intubation With Video Laryngoscopy vs Direct Laryngoscopy—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Medical Intensive Care Unit, CHU Nantes, Nantes, France,Clinical Research Unit, District Hospital Centre, La Roche-sur-Yon, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.5150 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Postmarket Safety Events Among Novel Therapeutics Approved by the US Food and Drug Administration Between 2001 and 2010 | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Division of Health Care Policy and Research and Kern Center for the Science of Health Care Delivery, Mayo Clinic, Rochester, Minnesota.,Section of General Internal Medicine, Department of Internal Medicine, Yale School of Medicine, New Haven, Connecticut.,State University of New York Downstate College of Medicine, Brooklyn.,Gastroenterology and Nutrition Department, Saint-Antoine Hospital, Paris, France6Proctology Department, Croix-Saint-Simon Hospital, Paris, France.,Section of Cardiovascular Medicine, Department of Internal Medicine, Yale School of Medicine, New Haven, Connecticut8The Robert Wood Johnson Foundation Clinical Scholars Program, Department of Internal Medicine, Yale School of Medicine, New Haven, Connecticut9Department of Health Policy and Management, Yale School of Public Health, New Haven, Connecticut10Center for Outcomes Research and Evaluation, Yale-New Haven Hospital, New Haven, Connecticut.,Section of General Internal Medicine, Department of Internal Medicine, Yale School of Medicine, New Haven, Connecticut8The Robert Wood Johnson Foundation Clinical Scholars Program, Department of Internal Medicine, Yale School of Medicine, New Haven, Connecticut9Department of Health Policy and Management, Yale School of Public Health, New Haven, Connecticut10Center for Outcomes Research and Evaluation, Yale-New Haven Hospital, New Haven, Connecticut. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.6326 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | A Large Adrenal Tumor With Marked 18F-Fluorodeoxyglucose Uptake | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Nuclear Medicine, La Timone University Hospital, CERIMED, Aix-Marseille University, Marseille, France.,Department of Endocrine Surgery, Conception University Hospital, Aix-Marseille University, Marseille, France.,Eunice Kennedy Shriver National Institute of Child Health & Human Development, Section on Medical Neuroendocrinology, National Institutes of Health, Bethesda, Maryland. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.7112 | 2017 | Medical research | NA | c(“fr”, “es”, “cz”, “dk”, “se”, “de”, “hu”, “ca”, “nl”, “pl”, “at”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Risks of Breast, Ovarian, and Contralateral Breast Cancer for BRCA1 and BRCA2 Mutation Carriers | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre for Cancer Genetic Epidemiology, Department of Public Health and Primary Care, University of Cambridge, Cambridge, England2Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge, England.,Centre for Epidemiology and Biostatistics, Melbourne School of Population Health, University of Melbourne, Melbourne, Australia.,Centre for Cancer Genetic Epidemiology, Department of Public Health and Primary Care, University of Cambridge, Cambridge, England.,Centre for Epidemiology and Biostatistics, Melbourne School of Population Health, University of Melbourne, Melbourne, Australia4Division of Cancer Medicine, Peter MacCallum Cancer Centre, Melbourne, Australia5Department of Medicine, St Vincent’s Hospital, University of Melbourne, Parkville, Australia6Sir Peter MacCallum Department of Oncology, University of Melbourne, Parkville, Australia.,Department of Epidemiology, Netherlands Cancer Institute, Amsterdam, the Netherlands.,Department of Molecular Genetics, National Institute of Oncology, Budapest, Hungary.,Department of Clinical Genetics, Copenhagen University Hospital Rigshospital, Copenhagen, Denmark.,Department of Oncology and Pathology, Karolinska Institute, Stockholm, Sweden.,Department of Oncology, Lund University Hospital, Lund, Sweden. | 123455859606116 | NA | NA | 61 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.8671 | 2017 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Dexamethasone Without Antibiotics for Sore Throat—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Nuffield Department of Primary Care Health Sciences, University of Oxford, Oxford, United Kingdom”),list(name = “Primary Care and Population Sciences, University of Southampton, Southampton, United Kingdom”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.9643 | 2017 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Practice-Level Social and Medical Risk With Performance in the Medicare Physician Value-Based Payment Modifier Program | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of General Medicine, Department of Internal Medicine, University of Michigan, Ann Arbor,Institute for Healthcare Policy and Innovation, University of Michigan, Ann Arbor,Center for Healthcare Outcomes and Policy, University of Michigan, Ann Arbor,Office of the Assistant Secretary for Planning and Evaluation, US Department of Health and Human Services, Washington, DC,Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts,Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts,Now with Washington University School of Medicine, St Louis, Missouri | 1256 | NA | NA | 6 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.9644 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Endovascular Contact Aspiration vs Stent Retriever on Revascularization in Patients With Acute Ischemic Stroke and Large Vessel Occlusion | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Stroke Center and Diagnostic and Interventional Neuroradiology, University of Versailles and Saint Quentin en Yvelines, Foch Hospital, Suresnes, France.,Department of Diagnostic and Interventional Neuroradiology, Rothschild Foundation, Paris, France.,Department of Diagnostic and Interventional Neuroradiology, Hospices Civils de Lyon, Bron, France.,University Lille, CHU Lille, Department of Biostatistics, EA 2694-Santé Publique: Epidémiologie et Qualité des Soins, Lille, France.,Department of Diagnostic and Interventional Neuroradiology, Guillaume et René Laennec University Hospital, Nantes, France. | 123451011121314 | NA | NA | 14 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.9938 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Azithromycin on Airflow Decline–Free Survival After Allogeneic Hematopoietic Stem Cell Transplant | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | AP-HP, Hôpital Saint-Louis, Service de Pneumologie, Paris, France.,Université Paris Diderot, Sorbonne Paris Cité, UMR 1153 CRESS, Biostatistics and Clinical Epidemiology Research Team, Paris, France.,AP-HP, Hôpital Saint-Louis, Service de Biostatistique et Information médicale, Paris, France.,Institut Paoli-Calmettes, Marseille, France.,On behalf of the Société Française de Greffe de Moelle-Thérapie Cellulaire (SFGM-TC), France.,Gilead Sciences Inc, Foster City, California.,CHRU Lille, Service des Maladies du Sang, Secteur Allogreffe de Cellules Souches Hématopoïétiques, Lille, France.,APHP, Hématologie-Transplantation Hôpital St Louis, Université Denis Diderot and INSERM UMR 1160, Paris, France. | 1232021222324 | NA | NA | 24 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.9973 | 2017 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Levosimendan on Low Cardiac Output Syndrome in Patients With Low Ejection Fraction Undergoing Coronary Artery Bypass Grafting With Cardiopulmonary Bypass | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Anesthesiology and Critical Care Medicine, Hôpital Européen Georges Pompidou, AP-HP, and University Paris Descartes-Sorbonne Paris Cité, Paris, France.,Department of Pharmacy, Hôpital Européen Georges Pompidou, AP-HP, and University Paris Descartes-Sorbonne Paris Cité, Paris, France.,Department of Anesthesiology and Critical Care Medicine, Centre Hospitalo-Universitaire de Dijon-Bourgogne, France.,Department of Anesthesiology and Critical Care Medicine, Hôpital de La Pitié Salpêtrière, AP-HP, and University Pierre & Marie Curie, Paris, France.,Department Department of Anaesthesiology and Critical Care II, Magellan Medico-Surgical Center, and University of Bordeaux, INSERM, UMR 1034, Biology of Cardiovascular Diseases, Bordeaux, France.,Department of Anesthesiology and Critical Care, Hôpital Cardiologique Louis Pradel and INSERM U1060, University Claude Bernard, Lyon, France.,Department of Biostatistics, Hôpital Européen Georges Pompidou, AP-HP, and University Paris Descartes-Sorbonne Paris Cité, Paris, France. | 123452425262728 | NA | NA | 28 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamacardio.2016.3851 | 2017 | Medical research | NA | c(“ne”, “sn”, “bf”, “ci”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Quality Assessment of 7 Cardiovascular Drugs in 10 Sub-Saharan Countries | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Pharmacy, Saint-Antoine Hospital, East Paris University Hospitals, AP-HP, Paris, France,Cardiology Department, University Hospital Fann, Dakar, Senegal,Department of Laboratories, General Agency of Health Equipment and Products, AP-HP, Paris, France,Faculty of Pharmacy, University of Paris-Sud, UA 401, Chatenay-Malabry, France,Cardiology Department, Cardiology Institute of Abidjan, Abidjan, Côte d’Ivoire,Internal Medicine and Cardiology Department, Lamordé National Hospital, Abdou Moumouni University, Niamey, Niger,Cardiology Department, National Hospital of Sanou Souro of Bobo Dioulasso, Ouagadougou, Burkina Faso,Department of Cardiology, European Georges Pompidou Hospital, AP-HP, Paris, France,INSERM U970, Paris, France,Paris Descartes University, Paris, France | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2016.4556 | 2017 | Medical research | NA | c(“de”, “us”, “je”, “nz”, “fr”, “it”, “il”, “gb”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Evaluation of Ischemic and Bleeding Risks Associated With 2 Parenteral Antiplatelet Strategies Comparing Cangrelor With Glycoprotein IIb/IIIa Inhibitors | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Brigham and Women’s Hospital Heart & Vascular Center and Harvard Medical School, Boston, Massachusetts.,Department of Medicine, Stanford University Medical School, Stanford, California3Deputy Editor, JAMA Cardiology.,Columbia University Medical Center and the Cardiovascular Research Foundation, New York, New York.,The Medicines Company, Parsippany, New Jersey.,French Alliance for Cardiovascular Clinical Trials, Départements Hospitalo-Universitaires Fibrosis, Inflammation, Remodeling, Institut National de la Santé et de la Recherche Médicale, Paris, France7Hôpital Bichat, Assistance-Publique-Hôpitaux de Paris, Paris, France8National Heart and Lung Institute, Imperial College, Royal Brompton Hospital, London, England.,Department of Medicine, Stanford University Medical School, Stanford, California.,Green Lane Cardiovascular Service, Auckland, New Zealand. | 123451011121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2016.5975 | 2017 | Medical research | NA | c(“fr”, “es”, “de”, “it”, “je”, “nl”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | One-Year Mortality for Bivalirudin vs Heparins Plus Optional Glycoprotein IIb/IIIa Inhibitor Treatment Started in the Ambulance for ST-Segment Elevation Myocardial Infarction | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Cardiology, Isala Hospital, Zwolle, the Netherlands2Cardiovascular Department, Azienda Sanitaria Universitaria Integrata, University of Trieste, Trieste, Italy.,Department of Cardiology, Isala Hospital, Zwolle, the Netherlands.,Department of Cardiology, St Antonius Hospital, Nieuwegein, the Netherlands.,Department of Cardiology, Hospital General Universitario Gregorio Marañon, Madrid, Spain.,Services d’Aide Médicale Urgente, Service Mobile d’Urgence et de Réanimation Urgences, Centre Hospitalier, Chateauroux, France.,The Medicines Company, Parsippany, New Jersey.,Institut National de la Santé et de la Recherche Medicale U-1148, Département Hospitalo-Universitaire FIRE (Fibrosis Inflammation Remodeling), Université Paris-Diderot, Paris, France 10Hôpital Bichat, Assistance Publique-Hôpitaux de Paris, Paris, France11National Heart and Lung Institute, Imperial College, Royal Brompton Hospital, London, England. | 1234589101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.0063 | 2017 | Medical research | NA | c(“fr”, “il”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Mortality Following Cardiovascular and Bleeding Events Occurring Beyond 1 Year After Coronary Stenting | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiology, Massachusetts General Hospital, Boston 2Harvard Medical School, Boston, Massachusetts 3Center for Clinical Biometrics, Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts 4Smith Center for Outcomes Research in Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts 5Baim Institute for Clinical Research, Boston, Massachusetts.,Harvard Medical School, Boston, Massachusetts 4Smith Center for Outcomes Research in Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts 5Baim Institute for Clinical Research, Boston, Massachusetts 6Division of Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts.,Christ Hospital Heart and Vascular Center, Cincinnati, Ohio 8Lindner Center for Research and Education, Cincinnati, Ohio.,Harvard Medical School, Boston, Massachusetts 5Baim Institute for Clinical Research, Boston, Massachusetts 6Division of Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts.,Saint Luke’s Mid America Heart Institute, Kansas City, Missouri10University of Missouri-Kansas City School of Medicine, Kansas City, Missouri.,Baim Institute for Clinical Research, Boston, Massachusetts.,Baim Institute for Clinical Research, Boston, Massachusetts 15Boston University School of Public Health, Boston, Massachusetts.,Harvard Medical School, Boston, Massachusetts 3Center for Clinical Biometrics, Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts 5Baim Institute for Clinical Research, Boston, Massachusetts 14Division of Cardiology, Brigham and Women’s Hospital, Boston, Massachusetts. | 1234589101112 | NA | NA | 12 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.0065 | 2017 | Medical research | NA | c(“se”, “dk”, “fr”, “ca”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Economic Analysis of Apixaban Therapy for Patients With Atrial Fibrillation From a US Perspective | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Duke Clinical Research Institute, Duke University Medical Center, Durham, North Carolina,National Heart and Lung Institute, Royal Brompton Hospital, Imperial College, London, England,Uppsala Clinical Research Center, Uppsala University, Uppsala, Sweden | 123451213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.0119 | 2017 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Potential of Oncocardiology | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01619065 | 1 | NA | NA | 4 | subscription | NA | Unit of Heart Failure and Valvular Heart Diseases, Department of Cardiology, Mediterranean University Cardio-Oncology Center, Aix-Marseille Univ, Hôpital NORD, Assistance Publique–Hôpitaux de Marseille, Marseille, France,Oncosafety Network of the Early Phases Cancer Trials Center, Aix-Marseille Univ, Assistance Publique–Hôpitaux de Marseille, Marseille, France,Groupe Méditerranéen de Cardio-Oncologie, Marseille, France,Mediterranean Association for Research and Studies in Cardiology, Marseille, France,Technological Advances for Genomics and Clinics, Aix-Marseille Univ, UMR/INSERM 1090, Marseille, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2017.1220 | 2017 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Transcatheter Aortic Valve Replacement With 30-Day Renal Function and 1-Year Outcomes Among Patients Presenting With Compromised Baseline Renal Function | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Columbia University Division of Cardiology, Mount Sinai Medical Center, Miami Beach, Florida”),list(name = “Columbia University Medical Center/New York Presbyterian Hospital, New York”),list(name = “Emory University, Atlanta, Georgia”),list(name = “Bluhm Cardiovascular Institute, Northwestern University, Chicago, Illinois”),list(name = “Baylor Scott & White Health, Plano, Texas”),list(name = “Cleveland Clinic, Cleveland, Ohio”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.1978 | 2017 | Medical research | NA | c(“be”, “de”, “jp”, “dk”, “fr”, “it”, “ch”, “ge”, “nl”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Long-term Safety and Efficacy of New-Generation Drug-Eluting Stents in Women With Acute Myocardial Infarction | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | The Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,Columbia University Medical Center, New York, New York.,Hoag Memorial Hospital Presbyterian, Newport Beach, California.,Ohio State University Medical Center, Columbus.,Seoul National University Main Hospital, Seoul, Korea.,San Raffaele Scientific Institute, Milan, Italy. | 123452829303132 | NA | NA | 32 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.2039 | 2017 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Health Status Benefits of Transcatheter vs Surgical Aortic Valve Replacement in Patients With Severe Aortic Stenosis at Intermediate Surgical Risk | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Saint Luke’s Mid America Heart Institute, School of Medicine, University of Missouri, Kansas City”),list(name = “Baylor Health Care System, Plano, Texas”),list(name = “Columbia University Medical Center, New York, New York”) | NA | NA | NA | 17 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.2275 | 2017 | Medical research | NA | c(“fr”, “de”, “gr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Effects of Sodium-Glucose Cotransporter 2 Inhibitors for the Treatment of Patients With Heart Failure | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Baylor Heart and Vascular Institute, Baylor University Medical Center, Dallas, Texas.,Department of Cardiology (CVK), Charité University Medicine, Berlin, Germany.,Berlin-Brandenburg Center for Regenerative Therapies, Charité University Medicine, Berlin, Germany.,Division of Cardiology, Stony Brook University, Stony Brook, New York.,National and Kapodistrian University of Athens, School of Medicine, Attikon University Hospital, Athens, Greece.,INSERM, Centre d’Investigations Cliniques 1433, Université de Lorraine, CHU de Nancy, Institut Lorrain du cœur et des vaisseaux, Nancy, France. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.2352 | 2017 | Medical research | NA | c(“it”, “ca”, “fr”, “nl”, “au”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Role of Genetic Testing in Inherited Cardiovascular Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiovascular Division, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Cardiology, The Thoraxcenter, Erasmus University Medical Center, Rotterdam, the Netherlands.,Referral Centre for Myocardial Diseases, Careggi University Hospital, Florence, Italy.,Agnes Ginges Centre for Molecular Cardiology, Centenary Institute, University of Sydney, Sydney, Australia.,Department of Medicine, University of Toronto, Toronto, Ontario, Canada.,Division of Cardiology, Johns Hopkins University, Baltimore, Maryland. | 123451011121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.2946 | 2017 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | What Is the Optimal Revascularization Strategy for Left Main Coronary Stenosis? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of Ottawa Heart Institute, Ottawa, Ontario, Canada”),list(name = “Division of Cardiac Surgery, St Michael’s Hospital, University of Toronto, Toronto, Ontario, Canada”),list(name = “Brigham and Women’s Hospital Heart & Vascular Center, Harvard Medical School, Boston, Massachusetts”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.3306 | 2017 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Longitudinal Hemodynamics of Transcatheter and Surgical Aortic Valves in the PARTNER Trial | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Duke University Medical Center, Durham, North Carolina”),list(name = “New York Presbyterian Hospital, Columbia University Medical Center, New York”),list(name = “Baylor Scott & White Health, Plano, Texas”),list(name = “Cleveland Clinic, Cleveland, Ohio”),list(name = “St Paul’s Hospital, University of British Columbia, Vancouver, British Columbia, Canada”) | NA | NA | NA | 22 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamadermatol.2016.3976 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Dermatopulmonary Syndrome Associated With Anti-MDA5 Antibodies After Allogeneic Hematopoietic Stem Cell Transplantation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | INSERM UMRS 976, Laboratory of Oncodermatology, Immunology and Cutaneous Stem Cells, Hôpital Saint-Louis, F-75010 Paris, France2Université Paris Diderot-Paris VII, Sorbonne Paris Cité, France3Service de Dermatologie, AP-HP, Hôpital Saint-Louis, Paris, France.,Université Paris Diderot-Paris VII, Sorbonne Paris Cité, France4Service d’Immunobiologie, AP-HP, Hôpital Saint-Louis, Paris, France.,Université Paris Diderot-Paris VII, Sorbonne Paris Cité, France6Service de Pneumologie, AP-HP, Hôpital Saint-Louis, F-75010 Paris, France7UMR1153 CRESS, Biostatistics and Clinical Epidemiology research team, F-75010 Paris, France.,Université Paris Diderot-Paris VII, Sorbonne Paris Cité, France5Service d’Hématologie-Greffes, AP-HP, Hôpital Saint-Louis F-75010 Paris, France8INSERM UMRS 1160, Hôpital Saint-Louis, F-75010 Paris, France. | 123451415161718 | NA | NA | 18 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.4518 | 2017 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Cost-effectiveness and Budget Effect Analysis of a Population-Based Skin Cancer Screening | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Public Health, Ghent University Hospital, Ghent, Belgium”),list(name = “Department of Dermatology, Ghent University Hospital, Ghent, Belgium”),list(name = “currently in private practice in Maldegem, Belgium”),list(name = “Department of Medical Oncology, Ghent University Hospital, Ghent, Belgium”),list(name = “Department of Dermatology, Institut Roi Albert II, Cliniques Universitaires Saint-Luc, Université Catholique de Louvain, Brussels, Belgium”),list(name = “Institute of Health and Society, Université Catholique de Louvain, Brussels, Belgium”) | NA | NA | NA | 8 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2016.4854 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | IgG4-Related Disease With Orbital Pseudotumors Treated With Rituximab Combined With Palpebral Surgery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Assistance Publique-Hôpitaux de Paris (APHP), Saint-Louis Hospital, Paris VII Denis Diderot University, Paris, France.,Department of Ophthalmology, Fondation Ophtalmologique A. de Rothschild, Paris, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.5442 | 2017 | Medical research | NA | c(“gp”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Main Characteristics of Zika Virus Exanthema in Guadeloupe | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | inserm-01491176 | 1 | NA | NA | 4 | subscription | NA | Dermatology and Internal Medicine Unit, Guadeloupe University Hospital, Pointe-à-Pitre, Guadeloupe ,EA 4546, Antilles University, Pointe-à-Pitre, Guadeloupe,Office of Paediatrics, Basseterre, Guadeloupe,Department of Neurology, Guadeloupe University Hospital, Pointe-à-Pitre, Guadeloupe,Department of Pediatrics, Guadeloupe University Hospital, Pointe-à-Pitre, Guadeloupe,Department of Dermatology, AP-HP, Hôpital Henri Mondor, Créteil, France,Centre d’Investigation Clinique Antilles Guyane, Inserm CIC 1424, Paris, France,Microbiology Laboratory, Guadeloupe University Hospital, Pointe-à-Pitre, Guadeloupe | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2016.5500 | 2017 | Medical research | NA | c(“fr”, “it”, “es”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Ugly Duckling Sign as a Major Factor of Efficiency in Melanoma Detection | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Dermatology and Skin Cancer Department, Hôpital Timone, Marseille, France.,Laboratory of Sciences of Information and Systems, Aix-Marseille University, Marseille, France.,Department of Dermatology, The Hertford British Hospital Charity, Levallois-Perret, France.,Department of Dermatology, Lyon Sud Hospital, Pierre Bénite, France.,Department of Dermatology, Assistance Publique des Hôpitaux de Paris, Hospital Cochin, University Paris Descartes, Paris, France. | 1234589101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.0014 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Surgical Treatment of Subungual Squamous Cell Carcinoma by Wide Excision of the Nail Unit and Skin Graft Reconstruction | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Centre Hospitalier Lyon Sud, Pierre-Bénite, France.,Department of Dermatology, Centre Hospitalier Lyon Sud, Pierre-Bénite, France2Health Department, Université Claude Bernard Lyon 1, Lyon, France3Lyons Cancer Research Center, Lyon, France.,Department of Biostatistics, Université Claude Bernard Lyon 1, Villeurbanne, France.,Department of Pathology, Centre Hospitalier Lyon Sud, Pierre-Bénite, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.0038 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Focal Pegylated Liposomal Doxorubicin–Induced Urticarialike Reaction at Cutaneous Transformed Sézary Lesions | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology and Venereology, Université Paris 13, Bobigny, Saint Louis Hospital, Paris, France. | 1234 | NA | NA | 4 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.0129 | 2017 | Medical research | NA | c(“it”, “es”, “at”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Dermoscopic Clues for Diagnosing Melanomas That Resemble Seborrheic Keratosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Melanoma Unit, Department of Dermatology, Hospital Clínic de Barcelona, Institut d’Investigacions Biomediques August Pi i Sunyer (IDIBAPS), University of Barcelona, Barcelona, Spain2Centre of Biomedical Research on Rare Diseases (CIBERER), Instituto de Salud Carlos III (ISCIII), Barcelona, Spain.,Department of Dermatology, Hospital del Mar, Institut Hospital del Mar d’Investigacions Mèdiques, Universitat Autònoma de Barcelona, Barcelona, Spain.,Department of Dermatology, University of Naples Federico II, Naples, Italy.,Dermatology and Skin Cancer Unit, Arcispedale Santa Maria Nuova Istituto di Ricovero e Cura a Carattere Scientifico (IRCCS), Reggio Emilia, Italy6Department of Dermatology, University of Modena and Reggio Emilia, Modena, Italy.,Dermatology Department, Hospital Sant Pau i Santa Tecla, Tarragona, Spain.,Department of Dermatology, Centre Hospitalier Lyon Sud, Lyon 1 University, Lyons Cancer Research Center (Pr Puisieux), Lyon, France.,Department of Dermatology and Venereology, Medical University of Graz, Graz, Austria. | 123451011121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.0270 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Oncogenic Mutations in Patients With Advanced Cutaneous Squamous Cell Carcinomas Treated With Cetuximab | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University Hospital of Nice, France.,Laboratory of Solid Tumors Genetics, Nice University Hospital and Institute of Research on Cancer and Aging (IRCAN), Faculty of Medicine, Nice, France.,Medical Oncology Department, Antoine Lacassagne Center, Nice, France.,Medical Oncology Department, Cannes Hospital, France.,Medipath Frejus-Saint Raphaël, Pathology Center, Frejus, France.,Laboratory of Solid Tumors Genetics, Nice University Hospital and Institute of Research on Cancer and Aging (IRCAN), Faculty of Medicine, Nice, France6Department of Pathology, University Hospital of Nice, France.,Department of Dermatology, University Hospital of Nice, France10INSERM, U1065, Centre Méditerranéen de Médecine Moléculaire, Team 12, Nice, France. | 123451213141516 | NA | NA | 16 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.0500 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Severe Onycholysis and Eyelash Trichomegaly Following Use of New Selective Pan-FGFR Inhibitors | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Departments of Oncology and Clinical Research, Institut Claudius Regaud, Institut Universitaire du Cancer, Toulouse Oncopole, France.,Department of Oral Medicine, Institut Claudius Regaud, Institut Universitaire du Cancer, Toulouse Oncopole, France.,Departments of Oncodermatology and Clinical Research, Institut Claudius Regaud, Institut Universitaire du Cancer, Toulouse Oncopole, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.1162 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy and Tolerance of Anti–Tumor Necrosis Factor α Agents in Cutaneous Sarcoidosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, AP-HP Hôpital Henri Mondor, Créteil, France.,Department of Dermatology, AP-HP Hôpital Henri Mondor, Créteil, France2Department of Dermatology, EA 7379 - EpiDermE, Université Paris Est, Créteil, France.,Department of Internal Medicine, Hôpital de la Croix-Rousse, Lyon, France.,Department of Internal Medicine, APHP Hôpital Henri Mondor, Créteil, France.,Department of Dermatology, Hôpital Saint-Eloi, Montpellier, France.,Department of Pneumology, APHP Hôpital Avicenne, Bobigny, France.,Department of Dermatology, AP-HP Hôpital Henri Mondor, Créteil, France2Department of Dermatology, EA 7379 - EpiDermE, Université Paris Est, Créteil, France20Department of Dermatology, Université Paris Est UPEC, Créteil, France. | 123452122232425 | NA | NA | 25 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.1669 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Histiocytoid Sweet Syndrome and Myelodysplastic Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Pathology Department, Hôpital St Louis, APHP, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.2022 | 2017 | Medical research | NA | c(“fr”, “tr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Tivadar Kosztka Csontváry’s The Old Fisherman—A Remarkable Example of Photodamaged Skin in Art | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of the History of Pharmacy and Ethics, Erciyes University School of Pharmacy, Melikgazi, Kayseri, Turkey.,University Institute of History of Medicine, Lyon, France. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.2222 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Clinical Outcomes of Metastatic Melanoma Treated With Checkpoint Inhibitors and Multisite Radiotherapy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Radiotherapy, Centre Antoine-Lacassagne, Nice, France.,Dermatology Department, Archet 2 Hospital, Nice University Hospital, Nice, France.,Department of Radiation Oncology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, Florida.,Department of Medical Oncology, Centre Antoine-Lacassagne, Nice, France. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.2223 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Treatment of Elastosis Perforans Serpiginosa Using a Fractional Carbon Dioxide Laser | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, CHU de Nice, France.,Université Côte d’Azur, INSERM U1065, Team 12, C3M, Nice, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.2444 | 2017 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Incident Amelanotic Melanoma With Phenotypic Characteristics, MC1R Status, and Prior Amelanotic Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, University of North Carolina, Chapel Hill”),list(name = “Department of Medicine, University of Virginia, Charlottesville”),list(name = “Department of Cancer Epidemiology, H. Lee Moffitt Cancer Center & Research Institute, Tampa, Florida”),list(name = “Department of Epidemiology and Biostatistics, Memorial Sloan Kettering Cancer Center, New York”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill15Department of Surgery, University of North Carolina, Chapel Hill”),list(name = “Department of Internal Medicine, University of New Mexico Cancer Center, University of New Mexico, Albuquerque”),list(name = “Department of Dermatology, University of North Carolina, Chapel Hill14Lineberger Comprehensive Cancer Center, University of North Carolina, Chapel Hill”) | NA | NA | NA | 22 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.2926 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Improvement of Genetic Testing for Cutaneous Melanoma in Countries With Low to Moderate Incidence | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Dermatologie Centre Hospitalier, Lyon Sud, France.,Service de Dermatologie, CHU d’Angers, Angers CEDEX, France.,Gustave Roussy, Université Paris-Saclay, Département de Biologie et Pathologie Médicales, Villejuif, France.,INSERM U1186, Université Paris-Saclay, Villejuif, France.,Equipe d’accueil 4129, Université Claude Bernard Lyon 1, Lyon, France.,Service de Génétique, CHU Angers, Angers CEDEX, France.,Université Claude Bernard Lyon 1-Santé, Lyon, France.,Centre de Recherche en Cancérologie de Lyon, INSERM U1052/CNRS UMR5286, Lyon France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.3029 | 2017 | Medical research | NA | c(“dk”, “hu”, “ca”, “de”, “be”, “nl”, “es”, “gr”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Safety of Systemic Agents for the Treatment of Pediatric Psoriasis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Radboud University, Nijmegen, the Netherlands.,Department of Dermatology, Northwestern University, Chicago, Illinois.,Department of Pediatrics, Northwestern University, Chicago, Illinois.,Department of Pediatric Medicine, Dermatology Section, The Hospital for Sick Children, University of Toronto, Toronto, Ontario, Canada.,Psoriasis Center at the Department of Dermatology, University Medical Center Schleswig-Holstein, Campus Kiel, Kiel, Germany.,Department for Health Evidence, Radboud University, Nijmegen, the Netherlands. | 123421222324 | NA | NA | 24 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.3338 | 2017 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Delays in Surgery for Melanoma With Insurance Type | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, University of North Carolina at Chapel Hill, Chapel Hill2Cecil G. Sheps Center for Health Services Research, University of North Carolina at Chapel Hill, Chapel Hill3Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill, Chapel Hill”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill, Chapel Hill”),list(name = “Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill, Chapel Hill4Department of Epidemiology, University of North Carolina at Chapel Hill, Chapel Hill”),list(name = “Department of Dermatology, University of North Carolina at Chapel Hill, Chapel Hill3Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill, Chapel Hill”) | NA | NA | NA | 5 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.3590 | 2017 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Treatment of Psychiatric Disorders and Skin-Restricted Lupus Remission | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Psychiatrie de l’Adulte A et Psychologie médicale, CHU Clermont-Ferrand, Université Clermont Auvergne, Clermont-Ferrand, France,Service de Psychiatrie de l’Adulte A et Psychologie médicale, CHU Clermont-Ferrand, Clermont-Ferrand, France,Service de Psychiatrie, CHU St-Etienne, University Jean Monnet, St-Etienne, France,Service de dermatologie, CHU Hopital Nord, Saint-Etienne, France,Direction de la Recherche Clinique et de l’Innovation, CHU Clermont Ferrand, Clermont-Ferrand, France,Service de Dermatologie, CHU Clermont-Ferrand, Université Clermont Auvergne, Clermont-Ferrand, France | 12345678 | NA | NA | 8 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.6821 | 2017 | Medical research | NA | c(“us”, “fr”, “ge”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of 3 Different Antihypertensive Medications With Hip and Pelvic Fracture Risk in Older Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Endocrinology, Kaiser Permanente of Georgia, Atlanta,Coordinating Center for Clinical Trials, The University of Texas School of Public Health, Houston,Department of Epidemiology, School of Public Health and Tropical Medicine, Tulane University, New Orleans, Louisiana,Preventive Medicine Section, Veterans Affairs Medical Center, Memphis, Tennessee,J. Paul Sticht Center on Aging, Wake Forest University School of Medicine, Winston-Salem, North Carolina,Division of Cardiovascular Sciences, National Heart, Lung, and Blood Institute, Bethesda, Maryland | 12345910111213 | NA | NA | 13 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2016.7827 | 2017 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Sleep Loss in the Homeless—An Additional Factor of Precariousness | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université Paris Descartes, Sorbonne Paris Cité, EA 7330 VIFASOM, Paris, France,Assistance Publique Hôpitaux de Paris (APHP), Hôtel Dieu, Centre du Sommeil et de la Vigilance, Paris, France,Santé Publique France, Institut National de Prévention et d’éducation pour la santé (INPES), Direction des Affaires Scientifiques Saint-Denis, France,Office Français de prévention des drogues et toxicomanies (PFDT), Direction Scientifique, Saint-Denis, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.8853 | 2017 | Medical research | NA | c(“fr”, “it”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Where Is the Geriatrician? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Gérontopôle, Centre Hospitalier Universitaire de Toulouse, Toulouse, France,Department of Geriatrics, Neurosciences and Orthopedics, Catholic University of the Sacred Heart School of Medicine, Rome, Italy | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2016.9284 | 2017 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Screening for Depression Through a Glass Darkly | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Hospital Amiens, Picardie, 80000, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2017.2377 | 2017 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Discrepant Expectations About Benefits and Harms | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Hospital, Amiens, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2017.3483 | 2017 | Social sciences | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Consequences of Recent Anti-immigration Policy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “UCLA Center of Health Policy Research, University of California, Los Angeles, Los Angeles”),list(name = “Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts”) | NA | NA | NA | 2 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2017.3721 | 2017 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Subgroup Claims Are Hype, Not Hope | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Hospital, Amiens, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2017.4332 | 2017 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Malignant Neoplasms in Patients With Rheumatoid Arthritis Treated With Tumor Necrosis Factor Inhibitors, Tocilizumab, Abatacept, or Rituximab in Clinical Practice | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Clinical Epidemiology Unit, Department of Medicine Solna, Karolinska Institutet, 171 76 Stockholm, Sweden”),list(name = “Clinical Epidemiology Unit, Department of Medicine Solna, Karolinska Institutet, 171 76 Stockholm, Sweden2Department of Rheumatology, Karolinska University Hospital, Stockholm, Sweden”) | NA | NA | NA | 4 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.3541 | 2017 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Diagnostic Challenges and Clinical Characteristics of Hepatitis E Virus–Associated Guillain-Barré Syndrome | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Neurology, University Hospitals Leuven, Leuven, Belgium”),list(name = “Department of Neurology, University Hospitals Leuven, Leuven, Belgium2Department of Neurosciences, Experimental Neurology, KU Leuven, University of Leuven, Leuven, Belgium”),list(name = “Laboratory for Molecular Neurobiomarker Research, KU Leuven, Leuven, Belgium4 Laboratory Medicine, University Hospitals Leuven, Leuven, Belgium”),list(name = “Department of Neurology, University Hospitals Leuven, Leuven, Belgium2Department of Neurosciences, Experimental Neurology, KU Leuven, University of Leuven, Leuven, Belgium5VIB, Vesalius Research Center, Leuven, Belgium”) | NA | NA | NA | 5 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher | hybrid | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.4069 | 2017 | Medical research | NA | c(“be”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Improved Muscular Weakness During Asthma Exacerbation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | CRMN Hôpital de la Citadelle, Liège, Belgium.,CRMN Hôpital de la Citadelle, Liège, Belgium2Institute I-Motion, Armand Trousseau Hospital, Paris, France.,Institute I-Motion, Armand Trousseau Hospital, Paris, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2016.4291 | 2017 | Medical research | NA | c(“kw”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Recommendations for the Treatment of Patients With Parkinson Disease During Ramadan | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre Hospitalier Universitaire Nantes 2INSERM, Hôpital Laennec, Nantes, France.,Department of Neurology, Ibn Sina Hospital, Kuwait4Department of Medicine, University of Kuwait, Al-Khaldiya, Kuwait. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2016.4467 | 2017 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Assessment of Safety and Efficacy of Safinamide as a Levodopa Adjunct in Patients With Parkinson Disease and Motor Fluctuations | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Clinical Neurosciences, University College London Institute of Neurology, London, United Kingdom”),list(name = “Department of Medicine, Division of Neurology, Toronto Western Hospital, University of Toronto, Toronto, Ontario, Canada”),list(name = “Department of Neurology, University of South Florida College of Medicine, Tampa”),list(name = “Department of Neurology, Baylor College of Medicine, Houston, Texas”),list(name = “Parkinson-Klinik, Wolfach, Germany”),list(name = “Biotie Therapies Inc, San Francisco, California”),list(name = “Servicio de Neurología, Sant Pau Hospital, Universidad Autonoma de Barcelona, Universitat Oberta de Catalunya, Barcelona, Spain”),list(name = “Department of Neurology, University of Kansas Medical Center, Kansas City”),list(name = “Department of Neurology, Medical University Innsbruck, Innsbruck, Austria”),list(name = “APC, St Moritz, Switzerland”) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.4703 | 2017 | Medical research | NA | c(“at”, “ie”, “pt”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Opicapone as Adjunct to Levodopa Therapy in Patients With Parkinson Disease and Motor Fluctuations | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Reta Lila Weston Institute, University College London, London, England.,Centro de Estudos Egas Moniz, Hospital de Santa Maria, Lisbon, Portugal.,Department of Clinical Pharmacology, Institut National de la Santé et de la Recherche Medicale (INSERM) and University Hospital of Toulouse, Toulouse, France4Department of Neurosciences, INSERM and University Hospital of Toulouse, Toulouse, France.,Department of Neurology, Innsbruck Medical University, Innsbruck, Austria.,Department of Research and Development, BIAL-Portela & Ca SA, Sao Mamede do Coronado, Portugal.,Quintiles, Dublin, Ireland.,Department of Research and Development, BIAL-Portela & Ca SA, Sao Mamede do Coronado, Portugal8Department of Pharmacology and Therapeutics, University Porto, Porto, Portugal. | 12345678 | NA | NA | 8 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.5042 | 2017 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Association of Depression and Treated Depression With Epilepsy and Seizure Outcomes | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Department of Clinical Neurosciences, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada2Department of Community Health Sciences, Cumming School of Medicine, University of Calgary, Alberta, Canada3Hotchkiss Brain Institute, University of Calgary, Calgary, Alberta, Canada4O’Brien Institute of Public Health, University of Calgary, Calgary, Alberta, Canada”),list(name = “Department of Community Health Sciences, Cumming School of Medicine, University of Calgary, Alberta, Canada5Clinical Research Unit, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada”),list(name = “Department of Community Health Sciences, Cumming School of Medicine, University of Calgary, Alberta, Canada”),list(name = “Department of Community Health Sciences, Cumming School of Medicine, University of Calgary, Alberta, Canada3Hotchkiss Brain Institute, University of Calgary, Calgary, Alberta, Canada4O’Brien Institute of Public Health, University of Calgary, Calgary, Alberta, Canada6Department of Psychiatry, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada”),list(name = “Department of Clinical Neurosciences, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada2Department of Community Health Sciences, Cumming School of Medicine, University of Calgary, Alberta, Canada3Hotchkiss Brain Institute, University of Calgary, Calgary, Alberta, Canada4O’Brien Institute of Public Health, University of Calgary, Calgary, Alberta, Canada5Clinical Research Unit, Cumming School of Medicine, University of Calgary, Calgary, Alberta, Canada”) | NA | NA | NA | 7 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.5349 | 2017 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Alzheimer Disease Signature Neurodegeneration and APOE Genotype in Mild Cognitive Impairment With Suspected Non–Alzheimer Disease Pathophysiology | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Helen Wills Neuroscience Institute, University of California, Berkeley2Department of Neurology, Otto-Von-Guericke University, Magdeburg, Germany3German Center for Neurodegenerative Diseases, Magdeburg, Germany”),list(name = “Department of Neurology, Otto-Von-Guericke University, Magdeburg, Germany3German Center for Neurodegenerative Diseases, Magdeburg, Germany4Institute of Control Engineering, Technische Universität Braunschweig, Braunschweig, Germany”),list(name = “Helen Wills Neuroscience Institute, University of California, Berkeley”),list(name = “Memory and Aging Center, Department of Neurology, University of California, San Francisco”),list(name = “Helen Wills Neuroscience Institute, University of California, Berkeley6Molecular Biophysics and Integrated Bioimaging Division, Lawrence Berkeley National Laboratory, Berkeley, California”) | NA | NA | NA | 8 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.5374 | 2017 | Medical research | NA | c(“au”, “ch”, “es”, “ge”, “ca”, “nl”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Combined Intravenous Thrombolysis and Thrombectomy vs Thrombectomy Alone for Acute Ischemic Stroke | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, University of Amsterdam, Academic Medical Center, Amsterdam, the Netherlands.,Neurovascular Imaging Research Core and the UCLA (University of California, Los Angeles) Stroke Center, Los Angeles.,Department of Radiology, Monash Health, Victoria, Australia.,Marcus Stroke and Neuroscience Center, Grady Memorial Hospital, Department of Neurology, Emory University School of Medicine, Atlanta, Georgia.,Department of Neurology, Oregon Health Science University, Portland.,Division of Interventional Neuroradiology, UCLA.,Department of Neurology, Inselspital, Bern University Hospital and University of Bern, Bern, Switzerland.,Departments of Diagnostic and Interventional Neuroradiology, Inselspital, Bern University Hospital and University of Bern, Bern, Switzerland.,Department of Neurology and Comprehensive Stroke Center, David Geffen School of Medicine at UCLA.,Division of Neuroradiology, Department of Medical Imaging, Toronto Western Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada13Division of Neurosurgery, Department of Surgery, Toronto Western Hospital, University Health Network, University of Toronto, Toronto, Ontario, Canada. | 1234589101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2016.5823 | 2017 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Two Paradigms for Endovascular Thrombectomy After Intravenous Thrombolysis for Acute Ischemic Stroke | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Neurologie et d’Urgences Neurovasculaires, Assistance Publique-Hôpitaux de Paris, Hôpital Saint-Antoine, Paris, France.,Service de Neuroradiologie Interventionnelle, Fondation Ophtalmologique Adolphe de Rothschild, Paris, France.,Service de Neurologie, Fondation Ophtalmologique Adolphe de Rothschild, Paris, France.,Service de Neurologie et d’Urgences Neurovasculaires, Assistance Publique-Hôpitaux de Paris, Hôpital Saint-Antoine, Paris, France4Université Pierre et Marie Curie, INSERM, Système Immunitaire, Neuroinflammation et Maladies Neurodégénératives, Hôpital Saint-Antoine, Paris, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2016.5867 | 2017 | Medical research | NA | c(“br”, “fr”, “es”, “it”, “cn”, “ca”, “cz”, “gr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Long-term Outcomes After Autologous Hematopoietic Stem Cell Transplantation for Multiple Sclerosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Brain Sciences, Imperial College London, London, England.,Center for International Blood and Marrow Transplant Research, Division of Hematology and Oncology, Department of Medicine, Medical College of Wisconsin, Milwaukee.,Clinical Hematology, University of Ottawa and The Ottawa Hospital Research Institute, Ottawa, Ontario, Canada.,Multiple Sclerosis Center, Swedish Neuroscience Institute, Seattle, Washington.,Internal Medicine, Autoimmune and Vascular Diseases Unit, Unité Fonctionnelle 04, Assistance Publique-Hôpitaux de Paris Saint-Louis Hospital, Institut National de la Santé et de la Récherche Médicale Unité Mixte de Recherche 1160, Paris, France.,European Blood and Marrow Transplant Paris Office, Hôpital Saint Antoine, Paris, France.,Biostatistics Unit, University of Genoa, Genova, Italy.,Haematology Department, Careggi University Hospital, Firenze, Italy. | 123452526272829 | NA | NA | 29 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.0073 | 2017 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | A New Sign of Intracerebral Hematoma Expansion—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Hemorrhagic Stroke Research Program, Department of Neurology, Massachusetts General Hospital, Harvard Medical School, Boston,Department of Neuroradiology, Université Paris Descartes, INSERM S894, Centre Hospitalier Sainte-Anne, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.0469 | 2017 | Biology (fond.) | NA | c(“de”, “fr”, “us”, “no”, “dk”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Genome-wide Pleiotropy Between Parkinson Disease and Autoimmune Diseases | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Norwegian Centre for Mental Disorders Research (NORMENT), K. G. Jebsen Centre for Psychosis Research, Institute of Clinical Medicine, University of Oslo, Oslo2Division of Mental Health and Addiction, Oslo University Hospital, Oslo, Norway.,Department of Clinical Genetics, Vrije Universiteit (VU) University Medical Center, Amsterdam, the Netherlands4German Center for Neurodegenerative Diseases (DZNE), Tübingen.,Norwegian Centre for Mental Disorders Research (NORMENT), K. G. Jebsen Centre for Psychosis Research, Institute of Clinical Medicine, University of Oslo, Oslo5Multimodal Imaging Laboratory, University of California at San Diego, La Jolla.,Multimodal Imaging Laboratory, University of California at San Diego, La Jolla6Department of Radiology and Biomedical Imaging, University of California, San Francisco.,Laboratory of Neurogenetics, National Institute on Aging, Bethesda, Maryland.,Multimodal Imaging Laboratory, University of California at San Diego, La Jolla8Department of Psychiatry, University of California at San Diego, La Jolla13Department of Neurosciences, University of California at San Diego, La Jolla29Department of Radiology, University of California at San Diego, La Jolla.,German Center for Neurodegenerative Diseases (DZNE), Tübingen27Department of Neurodegenerative Diseases, Hertie Institute for Clinical Brain Research, University of Tübingen, Tübingen, Germany.,Norwegian Centre for Mental Disorders Research (NORMENT), K. G. Jebsen Centre for Psychosis Research, Institute of Clinical Medicine, University of Oslo, Oslo.,Department of Neurodegenerative Diseases, Hertie Institute for Clinical Brain Research, University of Tübingen, Tübingen, Germany30Centre for Genetic Epidemiology, Institute for Clinical Epidemiology and Applied Biometry, University of Tübingen, Tübingen, Germany. | 123452425262728 | NA | NA | 28 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.0825 | 2017 | Medical research | NA | c(“kw”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Confusing Terminology—Neuroleptic Malignant Syndrome vs Malignant Hyperthermia—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre Hospitalier Universitaire Nantes and the French National Institute of Health and Medical Research, CIC 0004, Hôpital Laennec, Nantes, France,Department of Neurology, Ibn Sina Hospital, Sabah Medical Region, Kuwait,Department of Medicine, Kuwait University, Kuwait City, Kuwait | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.0934 | 2017 | Medical research | NA | c(“fr”, “jp”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Skeletal Muscle Involvement in Antisynthetase Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Keio University School of Medicine, Tokyo, Japan.,Department of Neuromuscular Research, National Institute of Neuroscience, and Department of Genome Medicine Development, Medical Genome Center, National Center of Neurology and Psychiatry, Tokyo, Japan.,Pierre and Marie Curie University-Paris VI (UPMC), National Institute of Health and Medical Research (INSERM), Mixed Research Unit (UMR) 974, Center of Research in Myology, Institute of Myology, Pitié-Salpêtrière University Hospital, Paris, France.,Department of Molecular Life Science, Basic Medical Science and Molecular Medicine, Tokai University School of Medicine, Isehara-shi, Kanagawa, Japan. | 12347891011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.1014 | 2017 | Medical research | NA | NA | 2168-6149 | 2168-6149 | JAMA Neurology | en | Intensive Blood Pressure Reduction and Spot Sign in Intracerebral Hemorrhage | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Division of Neurocritical Care and Emergency Neurology, Department of Neurology, Massachusetts General Hospital, Harvard Medical School, Boston2J. P. Kistler Stroke Research Center, Massachusetts General Hospital, Harvard Medical School, Boston”),list(name = “Department of Neurosurgery, Brain Center Rudolf Magnus University Medical Center, Utrecht, the Netherlands”),list(name = “J. P. Kistler Stroke Research Center, Massachusetts General Hospital, Harvard Medical School, Boston4Neuroradiology Service, Department of Radiology, Massachusetts General Hospital, Harvard Medical School, Boston”),list(name = “J. P. Kistler Stroke Research Center, Massachusetts General Hospital, Harvard Medical School, Boston”),list(name = “Department of Public Health Sciences, Medical University of South Carolina, Charleston”),list(name = “Zeenat Qureshi Stroke Research Center, University of Minnesota, Minneapolis”),list(name = “Division of Neurocritical Care and Emergency Neurology, Department of Neurology, Massachusetts General Hospital, Harvard Medical School, Boston2J. P. Kistler Stroke Research Center, Massachusetts General Hospital, Harvard Medical School, Boston7Department of Emergency Medicine, Massachusetts General Hospital, Harvard Medical School, Boston”) | NA | NA | NA | 14 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.1062 | 2017 | Medical research | NA | c(“nl”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Brain Calcifications in Adult-Onset Genetic Leukoencephalopathies | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Montpellier University Hospital, Montpellier, France.,Institut des Neurosciences Montpellier, Institut National de la Santé et de la Recherche Medicale (INSERM) Unité Mixte de Recherché 1051, Hopital Saint-Eloi, Montpellier, France.,Normandie University, UNIROUEN, INSERM U1245 and Rouen University Hospital, Department of Genetics and Centre National de Référence pour les Malades Alzheimer Jeunes, F 76000, Normandy Center for Genomic and Personalized Medicine, Rouen, France.,Genome Research, Department of Human Genetics, Radboud University Medical Center, Nijmegen, the Netherlands.,Normandie University, UNIROUEN, INSERM U1245 and Rouen University Hospital, Department of Neurology and Centre National de Référence pour les Malades Alzheimer Jeunes, F 76000, Normandy Center for Genomic and Personalized Medicine, Rouen, France. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.1200 | 2017 | Medical research | NA | c(“be”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Association Between Motor Symptoms and Brain Metabolism in Early Huntington Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Commissariat à l’Energie Atomique et aux Energies Alternatives, Département des Sciences du Vivant, Institut d’Imagerie Biomédicale, MIRCen, Fontenay-aux-Roses, France.,Centre National de la Recherche Scientifique (CNRS), Université Paris-Sud, Université Paris-Saclay, UMR 9199, Neurodegenerative Diseases Laboratory, Fontenay-aux-Roses, France.,Department of Nuclear Medicine, CHU Tenon Hospital, Paris, France.,NeurATRIS, Fontenay-aux-Roses, France.,Faculté de Médecine, Université Paris Est-Créteil, Créteil, France.,Centre Expert Parkinson, CHU Henri Mondor, Créteil, France. | 1210 | NA | NA | 10 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
import_manips(2018)
Temps d’exécution de l’import des données : 2.92 secs.
Dimensions du jeu de données : 136506 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/jama.2017.19132 | 2018 | Medical research | NA | c(“fr”, “us”, “de”, “se”, “ge”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Mechanically Expanded vs Self-Expanding Transcatheter Aortic Valve Replacement on Mortality and Major Adverse Clinical Events in High-Risk Patients With Aortic Stenosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Evanston Hospital Cardiology Division, Northshore University Health System, Evanston, Illinois.,Department of Cardiovascular Surgery, Houston Methodist DeBakey Heart and Vascular Center, Houston, Texas.,Piedmont Heart Institute, Atlanta, Georgia.,Cedars-Sinai Heart Institute, Los Angeles, California.,Aurora St Luke’s Medical Center, Milwaukee, Wisconsin.,Department of Cardiothoracic Surgery, Clinical Sciences, Lund University, Skåne University University Hospital, Lund, Sweden.,Boston Scientific Corp, Marlborough, Massachusetts. | 123452122232425 | NA | NA | 25 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.19163 | 2018 | Medical research | NA | c(“nl”, “hr”, “ch”, “au”, “ca”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Preferred Reporting Items for a Systematic Review and Meta-analysis of Diagnostic Test Accuracy Studies | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Radiology, University of Ottawa, Ottawa, Ontario, Canada.,Clinical Epidemiology Program, Ottawa Hospital Research Institute, Ottawa, Ontario, Canada.,Lady Davis Institute of the Jewish General Hospital, Montreal, Quebec, Canada.,Department of Psychiatry, McGill University, Montreal, Quebec, Canada.,University of Calgary, Calgary, Alberta, Canada.,Canadian Agency for Drugs and Technologies in Health, Ottawa, Ontario.,University of Bristol, National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care West, Bristol, England.,University of Birmingham, Birmingham, England. | 123232425266 | NA | NA | 26 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.20338 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Technology as a Tool for Mental Disorders | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | USR 3413, Centre National de la Recherche Scientifique, Sommeil, Addiction, et Neuropsychiatrie, Université de Bordeaux, Bordeaux, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.20956 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Organ Dysfunction After Surgery in Patients Treated With Individualized or Standard Blood Pressure Management—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01798998 | 1 | NA | NA | 4 | subscription | NA | Hôpital Estaing, Centre Hospitalier Universitaire Clermont-Ferrand, Clermont-Ferrand, France,Centre Hospitalier Universitaire Clermont-Ferrand, Direction de la Recherche Clinique, Clermont-Ferrand, France,Hôpital Saint-Eloi, Centre Hospitalier Universitaire Montpellier, Montpellier, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.21269 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association of Hysteroscopic vs Laparoscopic Sterilization With Procedural, Gynecological, and Medical Outcomes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology of Health Products, French National Agency for Medicines and Health Products Safety (ANSM), Saint-Denis, France.,Department of Obstetrics and Gynecology and Reproductive Medicine, Poissy Hospital, Poissy, France.,Department of Gynecology and Obstetrics, Centre Hospitalier de Bethune, Bethune, France.,University Versailles St-Quentin-en-Yvelines, Montigny le Bretonneux, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.21668 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | ICU Admission and Mortality Among Elderly Adults | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Polyvalent Intensive Care Unit, GHIC Le Raincy-Montfermeil, Montfermeil, France,Intensive Care Unit, Hôpital Européen Georges-Pompidou, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.21676 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Prehospital Blood Product Transfusion and Combat Injury Survival | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Anesthesiology and Intensive Care, Lyon Sud Hospital, Pierre Benite, France,Department of Anesthesiology and Intensive Care, Desgenette Military Teaching Hospital, Lyon, France,Antenne Médicale Spécialisée, Base des Fusiliers Marins et des Commandos, Lanester, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.21680 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | ICU Admission and Mortality Among Elderly Adults—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | AP-HP, Hôpital Saint-Antoine, Service de Réanimation Médicale, Paris, France,AP-HP, Hôpital Saint-Antoine, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2017.21903 | 2018 | Medical research | NA | c(“us”, “be”, “fr”, “au”, “je”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Guidelines for Inclusion of Patient-Reported Outcomes in Clinical Trial Protocols | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre for Patient Reported Outcome Research, Institute of Applied Health Research, University of Birmingham, Birmingham, England.,Sydney Medical School, Faculty of Medicine and School of Psychology, Faculty of Science, University of Sydney, Sydney, Australia.,Women’s College Research Institute, Department of Medicine, University of Toronto, Toronto, Ontario, Canada.,National Cancer Research Institute Consumer Forum, London, England.,The JAMA Network, Chicago, Illinois.,National Cancer Institute, Rockville, Maryland.,, London, England. | 12345343536377 | NA | NA | 37 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2017.21904 | 2018 | Medical research | NA | c(“gb”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of the Pulmonary Embolism Rule-Out Criteria on Subsequent Thromboembolic Events Among Low-Risk Emergency Department Patients | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sorbonne Université, INSERM UMRS 1166, IHU ICAN, Paris, France.,Emergency Department, Hôpital Universitaire Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris (AP-HP), Paris, France.,Clinical Research Platform (URC-CRC-CRB), AP-HP Hôpital Saint-Antoine, Paris, France.,Emergency Department, Hôpital Avicenne, APHP, Bobigny, France. | 1234192021 | NA | NA | 21 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.0156 | 2018 | Medical research | NA | c(“fr”, “be”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Bag-Mask Ventilation vs Endotracheal Intubation During Cardiopulmonary Resuscitation on Neurological Outcome After Out-of-Hospital Cardiorespiratory Arrest | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | AP-HP, Service d’Aide Médicale d’Urgence (SAMU) de Paris and Paris Sudden Death Expertise Center, Université Paris Descartes, Paris, France.,Emergency Department, Cliniques universitaires Saint Luc, Université Catholique de Louvain, Brussels, Belgium.,SAMU de Lyon and Department of Emergency Medicine, Hospices Civils de Lyon, Edouard Herriot Hospital, Lyon, France.,AP-HP, Emergency Medical Service Department, Beaujon University Hospital, Clichy, France.,Department of Emergency Medicine, Texas Tech University Health Sciences Center, El Paso.,AP-HP, Urgences, Hôpital Louis Mourier, Colombes, France.,AP-HP, SAMU 92, Hôpital Raymond Poincaré, Garches, France.,AP-HP, SAMU 93, Hôpital Avicenne, Inserm U942, Bobigny, France.,AP-HP, Unité de Recherche Clinique, hôpital Fernand Widal, Université Paris-Diderot, Paris, France. | 123452526272829 | NA | NA | 29 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.0438 | 2018 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Meropenem-Vaborbactam vs Piperacillin-Tazobactam on Clinical Cure or Improvement and Microbial Eradication in Complicated Urinary Tract Infection | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Internal Medicine, University of Michigan Medical School, Ann Arbor”),list(name = “Department of Medicine, Rutgers Robert Wood Johnson Medical School, New Brunswick, New Jersey”),list(name = “Department of First Internal Medicine, AHEPA Hospital, Medical School, Aristotle University, Thessaloniki, Greece”),list(name = “Department of Medicine, University of Illinois College of Medicine, Chicago”),list(name = “Department of Urology, Regional Clinical Hospital of Zaporizhizhia, Zaporizhizhia, Ukraine”),list(name = “The Medicines Company, San Diego, California”),list(name = “The Medicines Company, Parsippany, New Jersey”),list(name = “Fourth Department of Internal Medicine, National and Kapodistrian University of Athens, Medical School, Greece”) | NA | NA | NA | 24 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.10025 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Premedication for Neonates Requiring Nonemergency Intubation—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Neonatal Intensive Care Unit, Centre Hospitalier Intercommunal de Créteil, Creteil, France,Neonatal Intensive Care Unit, CHU Amiens, Amiens, France,Epidemiology and Statistics Sorbonne Paris Cité Research Center, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.10090 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Glyburide vs Insulin for Gestational Diabetes—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Gynecology-Obstetrics, Bicêtre Hospital of the Assistance Publique–Hôpitaux de Paris, Le Kremlin-Bicêtre, France,Department of Reproductive Endocrinology, Bicêtre Hospital of the Assistance Publique–Hôpitaux de Paris, Le Kremlin-Bicêtre, France,CESP Centre for Research in Epidemiology and Population Health, INSERM, Villejuif, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.10771 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Use of a Wearable Activity Monitor in a Home-Based Exercise Intervention for Peripheral Artery Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Institute of Physical Education and Sport Sciences, Les Ponts-de-Cé, France,University Hospital, Angers, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.11499 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Association of Cardiovascular Health Level in Older Age With Cognitive Decline and Incident Dementia | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université de Bordeaux, INSERM, Bordeaux Population Health Research Center, Bordeaux, France.,Université de Paris-Descartes, INSERM, Paris Cardiovascular Research Center, Paris, France.,CHU Bordeaux, Bordeaux, France.,Université de Montpellier, INSERM, Neuropsychiatry: Epidemiological and Clinical Research, Montpellier, France. | 123456789 | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.12358 | 2018 | Medical research | NA | c(“fr”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Trends in First Gabapentin and Pregabalin Prescriptions in Primary Care in the United Kingdom, 1993-2017 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Pharmacologie Médicale et Clinique, Centre Hospitalier Universitaire, Toulouse, France.,Centre for Clinical Epidemiology, McGill University, Montreal, Québec, Canada. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.13765 | 2018 | Medical research | NA | c(“be”, “si”, “es”, “it”, “pt”, “nl”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Decontamination Strategies and Bloodstream Infections With Antibiotic-Resistant Microorganisms in Ventilated Patients | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Intensive Care Center and Julius Center for Health Sciences and Primary Care, University Medical Center Utrecht, Utrecht, Netherlands.,Medical Microbiology and Julius Center for Health Sciences and Primary Care, University Medical Center Utrecht, Utrecht, Netherlands.,Centre for Tropical Medicine and Global Health, Nuffield Department of Clinical Medicine, University of Oxford, Oxford, England.,Infectious Diseases-Internal Medicine, Hospital de Sant Pau-Universitat Autònoma de Barcelona, Barcelona, Spain.,Department of Microbiology, Hospital de Sant Pau-Universitat Autònoma de Barcelona, Barcelona, Spain.,Department of Microbiology, Azienda Ospedaliera San Camillo Forlanini, Rome, Italy.,Intensive Care Unit, Azienda Ospedaliera San Camillo Forlanini, Rome, Italy.,Department of Anesthesia and Intensive Care, Ospedale Infermi RIMINI-AUSL della Romagna, Rimini, Italy.,Medical Intensive Care and Infection Control Unit, CHU Henri Mondor & University Paris Est Créteil, Paris, France. | 123452930313233 | NA | NA | 33 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.14276 | 2018 | Medical research | NA | c(“fr”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Extracorporeal Membrane Oxygenation for Severe Acute Respiratory Distress Syndrome and Posterior Probability of Mortality Benefit in a Post Hoc Bayesian Analysis of a Randomized Clinical Trial | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01973355 | 1 | NA | NA | 4 | subscription | NA | Interdepartmental Division of Critical Care Medicine, University of Toronto, Toronto, Ontario, Canada.,Department of Medicine, University Health Network, Toronto, Ontario, Canada.,Toronto General Hospital Research Institute, Toronto, Ontario, Canada.,New York-Presbyterian Hospital, New York.,Keenan Centre for Biomedical Research, Li Ka Shing Knowledge Institute, St Michael’s Hospital, Toronto, Ontario, Canada.,Sorbonne Université INSERM Unité Mixte de Recherche, Institute of Cardiometabolism and Nutrition, Paris, France.,Service de Médecine Intensive-Réanimation, Institute de Cardiologie, Assistance Publique-Hôpitaux de Paris Hôpital Pitié-Salpêtrière, Paris, France. | 12789 | NA | NA | 9 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.14282 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of High-Flow Nasal Oxygen vs Standard Oxygen on 28-Day Mortality in Immunocompromised Patients With Acute Respiratory Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01906406 | 1 | NA | NA | 4 | subscription | NA | Medical Intensive Care Unit and Department of Biostatistics, APHP, Hôpital St-Louis, Paris, France.,Intensive Care Unit, Paoli Calmettes Institut, Marseille, France.,Critical Care Center, CHU de Lille, Lille, France.,Medical Intensive Care Unit, Hospices Civils de Lyon, Hôpital Edouard Herriot, Lyon, France.,Department of Anesthesia and Critical Care, Necker Hospital, Paris, France.,Réanimation des Détresses Respiratoires et Infections Sévères, Assistance Publique-Hôpitaux de Marseille, Hôpital Nord, Aix-Marseille Université, Faculté de Médecine, Marseille, France.,Respiratory Intensive Care Unit, Hôpital Cochin, Paris, France.,Medical Intensive Care Unit and Respiratory Division, APHP, Hôpital Pitié-Salpêtrière, Sorbonne University, Paris, France. | 123453031323334 | NA | NA | 34 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.14283 | 2018 | Medical research | NA | c(“nl”, “ie”, “be”, “at”, “gb”, “fr”, “fi”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Human Recombinant Alkaline Phosphatase on 7-Day Creatinine Clearance in Patients With Sepsis-Associated Acute Kidney Injury | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Intensive Care Medicine, Radboud University Nijmegen Medical Center, Nijmegen, the Netherlands.,Department of Medicine, University of California, San Diego, Medical Center.,School of Medicine, University College Dublin, Dublin, Ireland.,Department of Internal Medicine, Division of Intensive Care and Emergency Medicine, Medical University Innsbruck, Innsbruck, Austria.,Indiana University, Indianapolis.,Unité Mixte de Recherche INSERM 1160, University Paris 7 Denis Diderot, Paris, France.,Department of Anaesthesiology and Critical Care, Hôpital Lariboisière, Assistance Publique-Hôpitaux de Paris, Paris, France.,Clinical Department, AM-Pharma BV, Bunnik, the Netherlands. | 1234519202122 | NA | NA | 22 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.14284 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effects of a Multimodal Program Including Simulation on Job Strain Among Nurses Working in Intensive Care Units | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Assistance Publique-Hôpitaux de Marseille, Hôpital Nord, Réanimation des Détresses Respiratoires et des Infections Sévères, Marseille, France.,Aix-Marseille Université, Faculté de Médecine, Centre d’Etudes et de Recherches sur les Services de Santé et Qualité, Marseille, France.,Assistance Publique-Hôpitaux de Marseille, Unité d’Aide Méthodologique à la Recherche Clinique, Marseille, France. | 123242526 | NA | NA | 26 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.14346 | 2018 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Venous Thromboembolism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of General Internal Medicine, Inselspital, Bern University Hospital, University of Bern, Bern, Switzerland”),list(name = “Department of Vascular Medicine, Academic Medical Center, Amsterdam, the Netherlands”),list(name = c(“Ottawa Hospital Research Institute, The Ottawa Hospital, Ottawa, Ontario, Canada”, “Department of Medicine, University of Ottawa, Ottawa, Ontario, Canada”)) | NA | NA | NA | 4 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.14741 | 2018 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Screening for Intimate Partner Violence, Elder Abuse, and Abuse of Vulnerable Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of Iowa, Iowa City”),list(name = c(“Fairfax Family Practice Residency, Fairfax, Virginia”, “Virginia Commonwealth University, Richmond”)),list(name = c(“Veterans Affairs Palo Alto Health Care System, Palo Alto, California”, “Stanford University, Stanford, California”)),list(name = “Harvard Medical School, Boston, Massachusetts”),list(name = “University of California, Los Angeles”),list(name = “Boston University, Boston, Massachusetts”),list(name = “Northwestern University, Evanston, Illinois”),list(name = c(“University of Hawaii, Honolulu”, “Pacific Health Research and Education Institute, Honolulu, Hawaii”)),list(name = “Tufts University, Medford, Massachusetts”) | NA | NA | NA | 19 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.16627 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Serum Creatinine in the Critically Ill Patient With Sepsis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | AP-HP, GH Saint Louis-Lariboisière, Department of Anesthesiology and Critical Care and Burn Unit, Paris, France.,University Paris Diderot, Université Sorbonne Paris Cité, France.,UMR INSERM 942, Institut National de la Santé et de la Recherche Médicale (INSERM), Paris, France.,F-CRIN, INICRCT Network, Paris, France.,Center for Critical Care Nephrology, Department of Critical Care Medicine, University of Pittsburgh, Pittsburgh, Pennsylvania. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.16975 | 2018 | Medical research | NA | c(“au”, “nl”, “fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Change in Cardiovascular Risk Factors With Incident Cardiovascular Events | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université Paris Descartes, Sorbonne Paris Cité, Faculté de Médecine, Paris, France.,INSERM, UMR-S970, Paris Cardiovascular Research Center, Integrative Epidemiology of Cardiovascular Disease (Team 4), Paris, France.,Cardiovascular Research Institute Maastricht, Department of Internal Medicine, Maastricht University Medical Centre, Maastricht, the Netherlands.,Baker Heart and Diabetes Institute, Melbourne, Australia.,INSERM, U1018, Centre for Research in Epidemiology and Population Health, Villejuif, France.,Department of Epidemiology and Public Health, University College London, London, United Kingdom. | 12567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.17075 | 2018 | Medical research | NA | c(“nz”, “qa”, “ie”, “au”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Early Sustained Prophylactic Hypothermia on Neurologic Outcomes Among Patients With Severe Traumatic Brain Injury | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Australian and New Zealand Intensive Care Research Centre, Monash University, Melbourne, Victoria, Australia.,Departments of Intensive Care, Alfred Hospital, Melbourne, Victoria, Australia.,Irish Critical Care Clinical Trials Network, University College Dublin-Clinical Research Centre at St Vincent’s University Hospital, Dublin, Ireland.,Department of Critical Care Medicine, Auckland City Hospital, Auckland, New Zealand. | 12212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.17121 | 2018 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Hypothermia After Traumatic Brain Injury | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Anaesthesia, Critical Care and Pain Medicine, University of Edinburgh, Chancellor’s Building, Little France, Edinburgh, United Kingdom”),list(name = “Department of Neurosurgery & Centre for Clinical Brain Sciences, University of Edinburgh & NHS Lothian, Western General Hospital, Edinburgh EH4 2XU, United Kingdom”),list(name = “Centre for Clinical Brain Sciences, University of Edinburgh & NHS Lothian, Western General Hospital, Edinburgh EH4 2XU, United Kingdom”) | NA | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.17566 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Cardiovascular Health and Cognitive Decline—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université de Bordeaux, INSERM, Bordeaux Population Health Research Center, Bordeaux, France,Université de Paris-Descartes, INSERM, Paris Cardiovascular Research Center, Paris, France | 12 | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.3708 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Atropine With Propofol vs Atropine With Atracurium and Sufentanil on Oxygen Desaturation in Neonates Requiring Nonemergency Intubation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Neonatal Intensive Care Unit, CHI Créteil, CRETEIL, France.,INSERM, U1153, Obstetrical, Perinatal and Pediatric Epidemiology Team, Epidemiology and Biostatistics Sorbonne, Paris Descartes University, France.,Pediatric and Neonatal Intensive Care Unit, CHU Toulouse, Toulouse, France.,Neonatal Intensive Care Unit, Hospices civils de Lyon, Lyon, France.,Neonatal Intensive Care Unit, CHU Amiens, Amiens, France.,INSERM, U1153, METHODS Team, Epidemiology and Statistics Sorbonne Paris Cité Research Center, Paris Descartes University, Hotel-Dieu Hospital (AP-HP), France.,Clinical Research Center, CHI Créteil, Créteil, France. | 123411121314 | NA | NA | 14 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.4072 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Glyburide vs Subcutaneous Insulin on Perinatal Complications Among Women With Gestational Diabetes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Assistance Publique-Hôpitaux de Paris, Department of Gynecology-Obstetrics, Bicêtre Hospital, Le Kremlin-Bicêtre, France.,University of Paris-Sud, University of Medicine Paris-Saclay, Le Kremlin-Bicêtre, France.,Centre for Research in Epidemiology and Population Health, Université Paris-Saclay, Université Paris-Sud, Université de Versailles Saint-Quentin-en-Yvelines, INSERM, Villejuif, France.,Assistance Publique-Hôpitaux de Paris, Department of Reproductive Endocrinology, Bicêtre Hospital, Le Kremlin-Bicêtre, France.,Assistance Publique-Hôpitaux de Paris, Department of Gynecology-Obstetrics, Béclère Hospital, Clamart, France.,Department of Gynecology-Obstetrics, St Joseph Hospital, Marseille, France.,Department of Endocrinology, Angers University Hospital, Angers, France.,Assistance Publique-Hôpitaux de Paris, Sorbonne Universities, University Pierre and Marie Curie, University Paris 06, Department of Neonatology, Armand Trousseau Hospital, Paris, France. | 1232223242526 | NA | NA | 26 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.4422 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Wait Time for Hip Fracture Surgery and Mortality | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Hospices Civils de Lyon, Lyon, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.4653 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Feasibility of Bioengineered Tracheal and Bronchial Reconstruction Using Stented Aortic Matrices | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Assistance Publique-Hôpitaux de Paris, Hôpitaux Universitaires Paris Seine-Saint-Denis, Hôpital Avicenne, Chirurgie Thoracique et Vasculaire, Université Paris 13, Sorbonne Paris Cité, UFR Santé, Médecine et Biologie Humaine, Bobigny, France.,Université Paris Descartes, Fondation Alain Carpentier, Laboratoire de Recherche Bio-chirurgicale, Assistance Publique-Hôpitaux de Paris, Hôpital Européen Georges Pompidou, Paris, France.,Assistance Publique-Hôpitaux de Paris, Hôpitaux Universitaires Paris Seine-Saint-Denis, Hôpital Avicenne, Oncologie, Université Paris 13, Sorbonne Paris Cité, UFR Santé, Médecine et Biologie Humaine, Bobigny, France.,B2OA UMR CNRS 7052, Université Paris Diderot, Sorbonne Paris Cité, CNRS, F-75010 Paris, France.,Ecole Nationale Vétérinaire d’Alfort, Université, Paris-Est, Maisons-Alfort, France.,Assistance Publique-Hôpitaux de Paris, Hôpitaux Universitaires Paris Seine-Saint-Denis, Hôpital Avicenne, Pneumologie, Université Paris 13, Sorbonne Paris Cité, UFR Santé, Médecine et Biologie Humaine, Bobigny, France.,Assistance Publique-Hôpitaux de Paris, Unité de Recherche Clinique, Hôpitaux Saint Louis-Lariboisière-Fernand Widal, Université Paris Diderot, Paris, France. | 12326272829 | NA | NA | 29 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.5924 | 2018 | Medical research | NA | c(“de”, “jp”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Diagnosis and Treatment of Acute Respiratory Distress Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Nippon Medical School Tama Nagayama Hospital, Tokyo, Japan,Department of Anesthesiology and Operative Intensive Care Medicine, Medical Center Cologne-Merheim, Cologne, Germany,Medical Intensive Care Unit, Paris-Sud University Hospitals, Le Kremlin-Bicêtre, France | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.6129 | 2018 | Medical research | NA | c(“cz”, “de”, “fr”, “it”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Recombinant Human Pentraxin 2 vs Placebo on Change in Forced Vital Capacity in Patients With Idiopathic Pulmonary Fibrosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University of Washington, Seattle.,Promedior Inc, Lexington, Massachusetts.,University of Kansas, Kansas City.,Inova Fairfax Hospital, Falls Church, Virginia.,University of California, San Francisco.,Venn Life Sciences, Paris, France.,Mayo Clinic, Rochester, Minnesota.,Unità Operativa Complessa di Pneumologia, IRCCS Fondazione Policlinico Universitario A. Gemelli, Università Cattolica del Sacro Cuore, Rome, Italy. | 123451314151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.8431 | 2018 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Antiretroviral Drugs for Treatment and Prevention of HIV Infection in Adults | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “University of Alabama at Birmingham”),list(name = “University of California San Diego School of Medicine”),list(name = “Massachusetts General Hospital and Harvard Medical School, Boston”),list(name = “The Alfred Hospital and Monash University, Melbourne, Australia”),list(name = “University of California Los Angeles”),list(name = “University Hospital of Cologne, Department I of Internal Medicine, Cologne, Germany, and German Center for Infection Research, Partner Site Bonn-Cologne, Cologne, Germany”),list(name = “University Hospital Zurich and Institute of Medical Virology, University of Zurich, Zurich, Switzerland”),list(name = “University of Paris Diderot and Saint-Louis Hospital, APHP, Paris”),list(name = “International Antiviral Society–USA, San Francisco, California”),list(name = “University of California San Francisco”) | NA | NA | NA | 17 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.9396 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Cell-Free DNA Screening vs Direct Invasive Diagnosis on Miscarriage Rates in Women With Pregnancies at High Risk of Trisomy 21 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Histology-Embryology and Cytogenetics, Hôpital Necker-Enfants Malades, AP-HP, Paris, France.,INSERM U1163, Hôpital Necker-Enfants Malades, Paris, France.,Paris Descartes University, Sorbonne Paris Cité, Institut Imagine, Paris, France.,Department of Obstetrics and Gynecology, Hôpital Necker-Enfants Malades, AP-HP, Paris, France.,Clinical Unit Research/Clinic Investigation Center, Paris Descartes, Hôpital Necker-Enfants Malades, AP-HP, Paris, France.,Groupe de Recherche en Obstétrique et Gynécologie (GROG), Paris, France.,Collège Français d’Echographie Fœtale (CFEF), Chateaubriand, France. | 121415 | NA | NA | 15 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.9592 | 2018 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of In-Bed Leg Cycling and Electrical Stimulation of the Quadriceps on Global Muscle Strength in Critically Ill Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Médecine Intensive Réanimation, Centre Hospitalier Régional d’Orléans, Orléans, France.,Service de Réanimation Chirurgicale, Centre Hospitalier Régional d’Orléans, Orléans, France. | 123451213141516 | NA | NA | 16 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamacardio.2017.4186 | 2018 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | A 40-Year-Old Man With Palpitations | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Cardiology Department, European Georges Pompidou Hospital, Paris, France.,Paris Descartes University, Medical School, Paris, France.,Cardiology Department, Clinique Pasteur, Toulouse, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2017.4228 | 2018 | Medical research | NA | c(“se”, “ca”, “il”, “gb”, “us”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Cardiovascular Outcomes According to Urinary Albumin and Kidney Disease in Patients With Type 2 Diabetes at High Cardiovascular Risk | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Thrombolysis in Myocardial Infarction Study Group, Cardiovascular Division, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts.,Diabetes Unit, Division of Internal Medicine, Hadassah Hebrew University Hospital, Jerusalem, Israel.,Women’s College Research Institute and Cardiovascular Division, Department of Medicine, Women’s College Hospital, Toronto, Ontario, Canada.,Peter Munk Cardiac Centre, University Health Network, University of Toronto, Toronto, Ontario, Canada.,AstraZeneca R&D, Gothenburg, Sweden. | 123489101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2017.4370 | 2018 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Interpretation of the ATHENA Trial—Caveats and Future Directions | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre d’Investigation Clinique Plurithématique 1433, INSERM U1116, Université de Lorraine, CHRU de Nancy, Nancy, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2017.5205 | 2018 | Medical research | NA | c(“de”, “it”, “ca”, “nl”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Associations of Omega-3 Fatty Acid Supplement Use With Cardiovascular Disease Risks | 1 | 513.540 | openAPC | NA | NA | 513.540 | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Clinical Trial Service Unit and Epidemiological Studies Unit, Nuffield Department of Population Health, University of Oxford, Oxford, England.,Medical Research Council Population Health Research Unit, Nuffield Department of Population Health, University of Oxford, Oxford, England.,Department of Endocrinology, Royal Berkshire Hospital, Reading, England. | 12151617 | NA | NA | 17 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | cc-by | 0 | 1 | NA | hybrid | hybrid | 1 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.0095 | 2018 | Medical research | NA | c(“de”, “au”, “ca”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Associations of Obstructive Sleep Apnea With Atrial Fibrillation and Continuous Positive Airway Pressure Treatment | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centre for Heart Rhythm Disorders, South Australian Health and Medical Research Institute, University of Adelaide and Royal Adelaide Hospital, Adelaide, Australia.,Adelaide Institute for Sleep Health, College of Medicine and Public Health, Flinders University.,Sleep Health Service, Respiratory and Sleep Services, Southern Adelaide Local Health Network, Adelaide, Australia.,Faculty of Medicine, National Heart and Lung Institute, Imperial College London, London, England.,Department of Cardiovascular Diseases, Mayo Clinic, Rochester, Minnesota.,HP2 and Sleep Lab, Institut National de la Santé et de la Recherche Médicale, Centre Hospitalier Universitaire Grenoble Alpes, Grenoble, France.,University Grenoble Alpes, Grenoble, France.,Department of Cardiology, Royal Melbourne Hospital, Melbourne, Australia.,Department of Medicine, University of Melbourne, Melbourne, Australia. | 1234678 | NA | NA | 8 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.0385 | 2018 | Medical research | NA | c(“de”, “pk”, “jp”, “gb”, “ca”, “rs”, “us”, “ru”, “in”, “ph”, “se”, “pl”, “sa”, “kz”, “nz”, “fr”, “dk”, “nl”, “et”, “au”, “fi”, “za”, “co”, “lk”, “cn”, “ir”, “dz”, “kg”, “es”, “br”, “bd”, “pt”, “il”, “eg”, “ng”, “hk”, “no”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | The Burden of Cardiovascular Diseases Among US States, 1990-2016 | 1 | 4062.400 | openAPC | NA | NA | 4062.400 | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institute for Health Metrics and Evaluation, University of Washington, Seattle,Division of Cardiology, Department of Medicine, University of Washington, Seattle,Jimma University, Jimma, Ethiopia,Cairo University, Giza, Egypt | 23451161171181200 | NA | NA | 119 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | hybrid | 1 | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.1209 | 2018 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Premature Cardiac Disease and Death After Preterm Preeclampsia in Women Whose Infant Was Small for Gestational Age | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Obstetrics and Gynecology, Jean-Verdier Hospital, Assistance Publique–Hôpitaux de Paris, Paris 13 University, Université Sorbonne Paris Cité, Bondy, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2018.1470 | 2018 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association ofLPAVariants With Risk of Coronary Disease and the Implications for Lipoprotein(a)-Lowering Therapies | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = c(“Medical Research Council Biostatistics Unit, University of Cambridge, Cambridge, United Kingdom”, “MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”)),list(name = c(“MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”, “School of Medicine, Wayne State University, Detroit, Michigan”, “Institute for Advanced Studies, University of Bristol, Bristol, United Kingdom”)),list(name = c(“MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”, “MRC Integrative Epidemiology Unit, Bristol Medical School, University of Bristol, Bristol, United Kingdom”)),list(name = “MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”),list(name = c(“Department of Clinical Biochemistry, Herlev and Gentofte Hospital, Copenhagen University Hospital, Copenhagen, Denmark”, “The Copenhagen General Population Study, Herlev and Gentofte Hospital, Copenhagen University Hospital, Copenhagen, Denmark”, “Faculty of Health and Medical Sciences, University of Copenhagen, Copenhagen, Denmark”, “Copenhagen City Heart Study, Frederiksberg Hospital, Copenhagen University Hospital, Copenhagen, Denmark”)),list(name = c(“MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”, “National Institute for Health Research Blood and Transplant Research Unit in Donor Health and Genomics, University of Cambridge, Cambridge, United Kingdom”)),list(name = c(“MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom”, “National Institute for Health Research Blood and Transplant Research Unit in Donor Health and Genomics, University of Cambridge, Cambridge, United Kingdom”, “Wellcome Trust Sanger Institute, Hinxton, United Kingdom”)) | NA | NA | NA | 31 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.2121 | 2018 | Medical research | NA | c(“fr”, “nl”, “hu”, “au”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Effect of Serial Infusions of CER-001, a Pre-β High-Density Lipoprotein Mimetic, on Coronary Atherosclerosis in Patients Following Acute Coronary Syndromes in the CER-001 Atherosclerosis Regression Acute Coronary Syndrome Trial | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | South Australian Health and Medical Research Institute, University of Adelaide, Adelaide, Australia.,Department of Vascular Medicine, Academic Medical Center, University of Amsterdam, Amsterdam, the Netherlands.,Heart and Vascular Center, Semmelweis University, Budapest, Hungary.,Department of Cardiovascular Medicine, Cleveland Clinic, Cleveland, Ohio. | 123451415161718 | NA | NA | 18 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.2251 | 2018 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Oral Contraceptives With Drug-Induced QT Interval Prolongation in Healthy Nonmenopausal Women | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Centres d’Investigation Clinique Paris-Est, Assistance Publique des Hôpitaux de Paris, Department of Pharmacology, Pitié-Salpêtrière Hospital, Paris, France.,Sorbonne-Université, Institut National de la Santé et de la Recherche Médicale, Research Unit on Cardiovascular, Metabolic And Nutrition Diseases (UMRS-1166), Institute of Cardiometabolism and Nutrition, Paris, France.,Assistance Publique des Hôpitaux de Paris, Pitié-Salpêtrière Hospital, Institut Endocrinologie, des Maladies Métaboliques et de Médecine Interne, Department of Endocrinology and Reproductive Medicine, Centre de Référence des Maladies Endocriniennes Rares de la Croissance et Centre des Pathologies Gynécologiques Rares, Paris, France. | 1234789 | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2018.2559 | 2018 | Medical research | NA | c(“fr”, “ge”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Enrollment of Older Patients, Women, and Racial and Ethnic Minorities in Contemporary Heart Failure Clinical Trials | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Emory Clinical Cardiovascular Research Institute, Emory University School of Medicine, Atlanta, Georgia.,Brigham and Women’s Hospital Heart and Vascular Center, Harvard Medical School, Boston, Massachusetts.,Duke Clinical Research Institute and Division of Cardiology, Duke University Medical Center, Durham, North Carolina.,Ahmanson-University of California, Los Angeles Cardiomyopathy Center, University of California, Los Angeles.,Section Editor.,Fondation Leducq, Paris, France.,Vanderbilt Heart and Vascular Institute, Nashville, Tennessee.,Inova Heart and Vascular Institute, Falls Church, Virginia.,Department of Medicine, University of Mississippi, Jackson. | 123456789 | NA | NA | 9 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.3152 | 2018 | Medical research | NA | c(“be”, “je”, “fr”, “it”, “ge”, “at”, “ca”, “nl”, “gb”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Outcomes of Patients With Asymptomatic Aortic Stenosis Followed Up in Heart Valve Clinics | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | GIGA Cardiovascular Sciences, Department of Cardiology, Heart Valve Clinic, University of Liège Hospital, Centre Hospitalier Universitaire du Sart Tilman, Liège, Belgium.,Gruppo Villa Maria Care and Research, Anthea Hospital, Bari, Italy.,Cardiology Department, Centre Hospitalier Universitaire de Limoges, Hôpital Dupuytren, Pôle Coeur-Poumon-Rein, Limoges, France.,Québec Heart and Lung Institute, Institut Universitaire de Cardiologie et de Pneumologie de Québec, Laval University, Quebec City, Québec, Canada.,University François Rabelais, Tours, France.,Department of Cardiology, Leiden University Medical Center, Leiden, the Netherlands. | 12343334353637 | NA | NA | 37 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.3798 | 2018 | Medical research | NA | c(“us”, “fr”, “ca”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Mild to Moderate Aortic Valve Stenosis Progression With Higher Lipoprotein(a) and Oxidized Phospholipid Levels | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut Universitaire de Cardiologie et de Pneumologie de Québec, Laval University, Québec City, Québec, Canada.,L’institut du thorax, Institut National de la Santé et de la Recherche Medicale, Centre National de la Recherche Scientifique, Centre Hospitalier Universitaire Nantes, University of Nantes, Nantes, France.,Vascular Medicine Program, University of California, San Diego, La Jolla.,Ottawa Heart Institute, University of Ottawa, Ottawa, Ontario, Canada. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.3811 | 2018 | Medical research | NA | c(“gb”, “se”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Multiple Biomarkers With Risk of All-Cause and Cause-Specific Mortality After Acute Coronary Syndromes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Medical Sciences, Cardiology, Uppsala University, Uppsala, Sweden.,Uppsala Clinical Research Center, Uppsala, Sweden.,Department of Medical Sciences, Clinical Chemistry, Uppsala University, Uppsala, Sweden. | 12391011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.4060 | 2018 | Medical research | NA | c(“lb”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Population-Based Analysis of Histologically Confirmed Melanocytic Proliferations Using Natural Language Processing | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cornell Scott-Hill Health Center, New Haven, Connecticut.,Kaiser Permanente Washington Health Research Institute, Seattle.,Departments of Pharmacy and Epidemiology, University of Washington, Seattle.,Department of Pathology, Institut Curie, and Faculty of Medicine, University of Paris Descartes, Paris, France.,Departments of Dermatology and Epidemiology, Brown University, Providence, Rhode Island.,The Dartmouth Institute for Health Policy and Clinical Practice, Geisel School of Medicine at Dartmouth, Lebanon, New Hampshire.,Department of Medicine Geisel School of Medicine at Dartmouth, Lebanon, New Hampshire.,Norris Cotton Cancer Center, Lebanon, New Hampshire.,Department of Medicine, University of Washington School of Medicine, Seattle. | 123491011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.4119 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | A Strange Digital Tumor | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University Hospital of Brest France, Brest Cedex, France.,Department of Internal Medicine, Morlaix County Hospital, Morlaix, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.4120 | 2018 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Topical Timolol for Paronychia and Pseudopyogenic Granuloma in Patients Treated With Epidermal Growth Factor Receptor Inhibitors and Capecitabine | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, Hospital de la Santa Creu i Sant Pau, Universitat Autònoma de Barcelona, Barcelona, Spain”) | NA | NA | NA | 4 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.4421 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Hair Repigmentation With Anti–PD-1 and Anti–PD-L1 Immunotherapy: A Novel Hypothesis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-01699247 | 1 | NA | NA | 4 | subscription | NA | Department of Hematology, CHU Rennes, Rennes, France,Gustave Roussy, Université Paris-Saclay, Département d’Innovation Thérapeutique et d’Essais Précoces, Villejuif, F-94805, France,INSERM U1015, Gustave Roussy, Villejuif, France,INSERM, U1236, Rennes, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.4584 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Immunotherapy With Overall Survival in Elderly Patients With Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Dermatology Unit, Lyon Sud University Hospital, Pierre Bénite, France.,Cancer Research Center of Lyon, Claude Bernard Lyon-1 University, INSERM 1052, CNRS 5286, Centre Leon Berard, Lyon, France.,Medical Oncology Department, Lyon Sud University Hospital, Pierre Bénite, France.,ImmuCare (Immunology Cancer Research) Institut de Cancérologie des Hospices Civils de Lyon, Lyon, France.,Evolutionary Biology and Biometry Laboratory, Université Lyon 1, CNRS UMR 5558, Villeurbanne, France. | 1278 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.4607 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Stevens-Johnson Syndrome During Pregnancy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | AP-HP, Hôpital Henri-Mondor, Department of Dermatology, Creteil, France.,Referral Center for Toxic Bullous Diseases, Île-de-France, France.,EA EpiDermE 7379, UPEC Université Paris Est-Créteil Val-de-Marne, France. | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.5176 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Rituximab as Single Long-term Maintenance Therapy in Patients With Difficult-to-Treat Pemphigus | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Reims University Hospital, Reims, France,Department of Dermatology, Assistance Publique des Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France,Epidemiology in Dermatology and Evaluation of Therapeutics, Unit 7379, University Paris Est, Créteil, France,Laboratory of Dermatology, Unit 7319, University of Reims Champagne-Ardenne, Reims, France | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.5889 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Lenalidomide as an Alternative to Thalidomide for Treatment of Recurrent Erythema Multiforme | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Assistance Publique–Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France,EA 7379 EpiDermE (Epidemiologie en Dermatologie et Evaluation des Thérapeutiques), Université Paris–Est Créteil Val de Marne, Créteil, France,Referral Center for Toxic Bullous Diseases, Créteil, France,Department of Immunology, Assistance Publique–Hôpitaux de Paris, Bichat Hospital, Paris, France,Université Paris–Est Créteil Val de Marne, Créteil, France | 12345 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.5980 | 2018 | Medical research | NA | c(“ie”, “it”, “fr”, “de”, “gb”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Diagnostic Criteria of Ulcerative Pyoderma Gangrenosum | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University of California, Davis, Sacramento.,Department of Dermatology, University of California, San Francisco.,Division of Immunology and Rheumatology, Department of Dermatology, Stanford University, Stanford, California.,Division of Immunology and Rheumatology, Department of Internal Medicine, Stanford University, Stanford, California.,Department of Dermatology, School of Medicine and Dentistry, University of Aberdeen, Aberdeen, United Kingdom.,Centre of Evidence Based Dermatology, King’s Meadow Campus, University of Nottingham, United Kingdom.,Charles Institute of Dermatology, University College, Dublin, Ireland. | 12341617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2017.6128 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Hair Loss Associated With Cucurbit Poisoning | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre Sabouraud, Saint Louis Hospital, Paris, France. | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2017.6401 | 2018 | Medical research | NA | c(“sg”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Atorvastatin in Combination With Narrowband UV-B in Adult Patients With Active Vitiligo | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Université Côte d’Azur, Centre Hospitalier Universitaire Nice, Nice, France,National Skin Centre, Singapore,Department of Clinical Research and Innovation, Université Côte d’Azur, Centre Hospitalier Universitaire Nice, Nice, France,Université Côte d’Azur, INSERM U1065, team 12, C3M, Nice, France | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.0916 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Whole-Body Distribution and Clinical Association of Telangiectases in Systemic Sclerosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Lille, Lille Inflammation Research International Center, Lille, France.,Inserm, Lille, France.,CHU Lille, Département De Médecine Interne et Immunologie Clinique, Lille, France.,Centre de Référence des Maladies Autoimmunes et Systémiques Rares du Nord et Nord-Ouest de France, Lille, France. | 121011 | NA | NA | 11 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.1572 | 2018 | Medical research | NA | c(“je”, “ca”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Inadequately Controlled Disease and Disease Severity With Patient-Reported Disease Burden in Adults With Atopic Dermatitis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Oregon Health & Science University, Portland.,Department of Dermatology and the Immunology Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,Department of Dermatology, University of Pennsylvania Perelman School of Medicine, Philadelphia.,Department of Dermatology, Wake Forest School of Medicine, Winston-Salem, North Carolina.,Department of Dermatology, Warren Alpert Medical School, Brown University, Providence, Rhode Island.,Department of Environmental Medicine and Public Health, Icahn School of Medicine at Mount Sinai, New York, New York.,Quorum Consulting Inc, San Francisco, California.,Analysis Group Inc, Montreal, Canada.,Center for Biostatistics, Icahn School of Medicine at Mount Sinai, New York, New York.,Regeneron, Tarrytown, New York. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.2120 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association Between Severe Acute Contact Dermatitis Due toNigella sativaOil and Epidermal Apoptosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02333665 | 1 | NA | NA | 4 | subscription | NA | Dermatology Department, Assistance publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Pathology Department, Assistance publique-Hôpitaux de Paris, Henri Mondor Hospital, Créteil, France.,Reference Center for Severe Cutaneous Adverse Reactions, Créteil, France.,Equipe d’Accueil 7379, Epidémiologie en Dermatologie et Evaluation des Thérapeutiques, Créteil, France. | 12345910 | NA | NA | 10 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.2127 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association Between Mediterranean Anti-inflammatory Dietary Profile and Severity of Psoriasis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Mondor Hospital (AP-HP), Paris Est Créteil University, Créteil, France.,Nutritional Epidemiology Research Team (EREN-CRESS), Paris 13 University, INSERM (U1153), INRA (U1125), CNAM, COMUE Sorbonne Paris Cité, Bobigny, France.,Epidemiology in Dermatology and Evaluation of Therapeutics (EpiDermE), EA7379, Paris-Est University, UPEC, DHU VIC, Créteil, France.,Clinical Investigation Center 1430, INSERM, Créteil, France. | 1234589 | NA | NA | 9 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.2191 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Treatment of Severe Hailey-Hailey Disease With Apremilast | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Université Nice Côte d’Azur, Centre Hospitalier Universitaire Nice, Nice, France.,INSERM U1065, C3M, team 12, Université Nice Côte d’Azur, Nice, France. | 123456 | NA | NA | 6 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.2388 | 2018 | Medical research | NA | c(“us”, “fr”, “lb”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Accuracy of Digital Pathologic Analysis vs Traditional Microscopy in the Interpretation of Melanocytic Lesions | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Departments of Medicine and Community and Family Medicine, The Dartmouth Institute for Health Policy and Clinical Practice, Hanover, New Hampshire.,Geisel School of Medicine at Dartmouth, Hanover, New Hampshire.,Norris Cotton Cancer Center, Lebanon, New Hampshire.,Department of Pathology, Institut Curie, Paris Sciences and Lettres Research University, and Faculty of Medicine University of Paris Descartes, Paris, France.,Division of Dermatology, Department of Medicine, University of Washington School of Medicine, Seattle.,Department of Medical Informatics and Clinical Epidemiology, School of Medicine, Oregon Health & Science University, Portland.,Department of Medicine, School of Medicine, Oregon Health & Science University, Portland.,Providence Cancer Center, Providence Health and Services, Portland, Oregon.,Department of Medicine, University of Washington School of Medicine, Seattle.,Department of Medicine, David Geffen School of Medicine at UCLA, Los Angeles, California. | 123101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.2770 | 2018 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Antiphospholipid Syndrome Following Pembrolizumab Treatment of Stage IIIB Unresectable Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Archet Hospital, Nice University Hospital, Nice, France,INSERM, U1065, The Mediterranean Center for Molecular Medicine Team 12, Nice, France,Department of Oncology, Bastia Hospital, Bastia, France | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamafacial.2018.0644 | 2018 | Medical research | NA | fr | 2168-6076 | 2168-6076,2168-6092 | JAMA Facial Plastic Surgery | en | Computer-Assisted Bilateral Orbitozygomatic Reconstruction in a Patient With Treacher Collins Syndrome Using Bicortical Calvarial Graft | 0 | NA | NA | NA | NA | NA | NA | Mary Ann Liebert Inc | Mary Ann Liebert Inc | NA | 0 | NA | NA | 4 | subscription | NA | Department of Maxillofacial and Facial Plastic Surgery, Trousseau Hospital, University Hospital Center of Tours, Tours, France.,University of Medecine François Rabelais, Tours, France.,Department of Craniofacial Surgery, Clocheville Hospital, University Hospital Center of Tours, Tours, France. | 1245 | NA | NA | 5 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2017.5836 | 2018 | Medical research | NA | c(“dk”, “au”, “fr”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Reform of the National Screening Mammography Program in France | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sydney School of Public Health, University of Sydney and Wiser Healthcare, Sydney, Australia.,The Nordic Cochrane Centre, Rigshospitalet Department 7811, Blegdamsvej 9, DK-2100, Copenhagen, Denmark.,International Prevention Research Institute, Lyon, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2018.0514 | 2018 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Sex Differences in Outcomes After STEMI | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Experimental, Diagnostic and Specialty Medicine, University of Bologna, Bologna, Italy”),list(name = “Department of Electrical and Computer Engineering, University of California, Los Angeles”),list(name = “University Clinic of Cardiology, Medical Faculty, University Ss. Cyril and Methodius, Skopje, Macedonia”),list(name = “Clinical Center of Serbia, Department of Cardiology, Medical Faculty, University of Belgrade, Belgrade, Serbia.”),list(name = “Medical Faculty, University of Belgrade, Belgrade, Serbia”),list(name = “Department for Cardiovascular Diseases, University Hospital Center Zagreb, University of Zagreb, Zagreb, Croatia”),list(name = “Cardiovascular Research Institute (ICCC), CiberCV-Institute Carlos III, IIB-Sant Pau, Hospital de la Santa Creu i Sant Pau, Autonomous University of Barcelona, Barcelona, Spain”) | NA | NA | NA | 13 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2018.0607 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Effect of Systematic Physician Cross-checking on Reducing Adverse Events in the Emergency Department | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sorbonne Université, Paris, France.,Emergency department, Hôpital Pitié-Salpêtrière, Assistance Publique - Hôpitaux de Paris (APHP), Paris, France.,Plateforme de recherche clinique (URC-CRC-CRB), Hôpital Saint-Antoine, APHP, Paris, France.,Emergency department, Hôpital Cochin, APHP, Paris, France. | 1234151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.1940 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Mineralocorticoid Receptor Antagonists in ST-Segment Elevation Myocardial Infarction | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Internal Medicine–Cardiology, University of Michigan School of Medicine, Ann Arbor,Centre d’Investigation Clinique 1433, Institut National de la Santé Et de la Recherche Médicale, Université de Lorraine and Centre Hospitalier Régional Universitaire, Nancy, France | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2018.2012 | 2018 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Multifactorial Brugada Phenocopy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Servicios Sanitarios del Área de Salud de El Hierro, Valle del Golfo Health Center, Islas Canarias, Spain”),list(name = “Institut Catala d’Ciencies Cardiovasculars, Hospital Santa Creu i Sant Pau, Barcelona, Spain”),list(name = “Division of Cardiology, Queen’s University, Kingston, Ontario, Canada”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2018.3550 | 2018 | Medical research | NA | c(“fr”, “gb”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | The Health Care System Flies in the Face of Airline Security Concepts | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University Hospital, Amiens, Picardie, France,Department of Women’s Health, St Thomas’ Hospital, London, United Kingdom,London, United Kingdom | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.3553 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | The Health Care System Flies in the Face of Airline Security Concepts—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Sorbonne Université, Paris, France,Emergency Department, Hopital Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris, Paris, France,Emergency Department, Royal London Hospital, Barts Health NHS Trust, London, England | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.4204 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Effect of Increased Daily Water Intake in Premenopausal Women With Recurrent Urinary Tract Infections | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, School of Medicine, University of Miami, Miami, Florida.,Danone Nutricia Research, Palaiseau, France.,Service des Explorations Fonctionnelles Physiologiques, CHU de Toulouse, Université Paul Sabatier, Toulouse, France.,Department of Urology, University of Texas Southwestern Medical Center, Dallas. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2018.4357 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of Frequency of Organic Food Consumption With Cancer Risk | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02067480 | 1 | NA | NA | 4 | subscription | NA | Centre de Recherche Epidémiologie et Statistique Sorbonne Paris Cité, Institut National de la Santé et de la Recherche Médicale (INSERM) U1153, Institut National de la Recherche Agronomique (INRA) U1125, Conservatoire National des Arts et Métiers, Université Paris 13, Equipe de Recherche en Epidémiologie Nutritionnelle, Bobigny, France.,Département de Santé Publique, Hôpital Avicenne, Bobigny, France.,Centre de Recherche en Cardiovasculaire et Nutrition, Aix Marseille Université, INSERM, INRA, Marseille, France. | 12345891011 | NA | NA | 11 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.4451 | 2018 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Lactic Acidosis, Metformin Use, and Dose-Response Association | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Hôpital Haut-Lévêque, Département d’Endocrinologie, Diabétologie, Nutrition, Pessac, Bordeaux, France,Université de Bordeaux, Faculté de Médecine, Bordeaux, France,Centre de Recherche INSERM, Université de Bordeaux U1219, Bordeaux Population Health, Bordeaux, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.0083 | 2018 | Medical research | Conflict of Interest Disclosures: Dr Elder reported serving as a consultant for Myriad Genetics and SciBase and receiving research funding from the National Institutes of Health/National Cancer Institute. Dr Barnhill reported a financial relationship with Myriad Genetics. Dr Longton reported receiving grants from Fred Hutchinson Cancer Research Center and the National Cancer Institute during the conduct of the study. Drs Titus, Weinstock, Pepe, and Piepkorn reported receiving grants from the National Cancer Institute during the conduct of the study. No other disclosures were reported. | fr | 2574-3805 | 2574-3805 | JAMA Network Open | en | Concordance and Reproducibility of Melanoma Staging According to the 7th vs 8th Edition of the AJCC Cancer Staging Manual | 1 | 2587.492 | openAPC_estimation_issn | 2546.473 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | Department of Medicine, David Geffen School of Medicine, University of California, Los Angeles (Elmore); Department of Pathology and Laboratory Medicine, Hospital of the University of Pennsylvania, Philadelphia (Elder); Department of Pathology, Institut Curie, Paris, France (Barnhill); Paris Sciences and Lettres Research University, Paris, France (Barnhill); Faculty of Medicine, University of Paris Descartes, Paris, France (Barnhill); Pathology Associates, Clovis, California (Knezevich); Program in Biostatistics and Biomathematics, Fred Hutchinson Cancer Research Center, Seattle, Washington (Longton, Pepe); Department of Epidemiology, Geisel School of Medicine at Dartmouth, Hanover, New Hampshire (Titus); Department of Pediatrics, Geisel School of Medicine at Dartmouth, Hanover, New Hampshire (Titus); Norris Cotton Cancer Center, Lebanon, New Hampshire (Titus); Center for Dermatoepidemiology, Providence Veterans Affair Medical Center, Providence, Rhode Island (Weinstock); Department of Dermatology, Brown University, Providence, Rhode Island (Weinstock); Department of Epidemiology, Brown University, Providence, Rhode Island (Weinstock); Department of Medical Informatics and Clinical Epidemiology, School of Medicine, Oregon Health and Science University, Portland (Nelson); Department of Medicine, School of Medicine, Oregon Health and Science University, Portland (Nelson); Department of Medicine, University of Washington School of Medicine, Seattle (Reisch, Radick, Piepkorn); Dermatopathology Northwest, Bellevue, Washington (Piepkorn). | 1234589101112 | NA | NA | 12 | 1 | 0 | 1 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 0 | 1 | NA | gold | gold | 1 | gold | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.0088 | 2018 | Medical research | NA | NA | 2574-3805 | 2574-3805 | JAMA Network Open | en | Association of Clinical and Economic Outcomes With Permanent Pacemaker Implantation After Transcatheter Aortic Valve Replacement | 1 | 2587.492 | openAPC_estimation_issn | 2569.593 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | list(name = c(“Institute for Clinical Evaluation Sciences, Toronto, Ontario, Canada”, “Schulich Heart Centre, Sunnybrook Health Sciences Centre, University of Toronto, Toronto, Ontario, Canada”)),list(name = “Institute for Clinical Evaluation Sciences, Toronto, Ontario, Canada”),list(name = “Schulich Heart Centre, Sunnybrook Health Sciences Centre, University of Toronto, Toronto, Ontario, Canada”),list(name = c(“Institute for Clinical Evaluation Sciences, Toronto, Ontario, Canada”, “Institute for Health Policy, Management and Evaluation, University of Toronto, Toronto, Ontario, Canada”)),list(name = “Quebec Heart and Lung Institute, Laval University, Quebec City, Quebec, Canada”),list(name = c(“Institute for Clinical Evaluation Sciences, Toronto, Ontario, Canada”, “Schulich Heart Centre, Sunnybrook Health Sciences Centre, University of Toronto, Toronto, Ontario, Canada”, “Institute for Health Policy, Management and Evaluation, University of Toronto, Toronto, Ontario, Canada”)) | NA | NA | NA | 10 | 1 | 0 | 0 | 0 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 0 | 1 | NA | gold | gold | 1 | gold | 0 | 0 | 0 |
| 10.1001/jamanetworkopen.2018.1164 | 2018 | Medical research | NA | fr | 2574-3805 | 2574-3805 | JAMA Network Open | en | Effects of a Hypnosis Session Before General Anesthesia on Postoperative Outcomes in Patients Who Underwent Minor Breast Cancer Surgery | 1 | 2587.492 | openAPC_estimation_issn | 2633.658 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | Department of Anesthesia, Montpellier Cancer Institute (ICM), University of Montpellier, Montpellier, France.,Department of Anesthesia, Paoli Calmette Institute, Marseille, France.,Biometrics Unit, Montpellier Cancer Institute (ICM), University of Montpellier, Montpellier, France.,Department of Anesthesia, Centre Hospitalier Universitaire Montpellier, University of Montpellier, Montpellier, France.,Department of Clinical Research, Montpellier Cancer Institute (ICM), University of Montpellier, Montpellier, France.,Department of Anesthesia, Centre Hospitalier Universitaire Nîmes, University of Montpellier, Nîmes, France. | 1234510111213 | NA | NA | 13 | 1 | 0 | 1 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 1 | 0 | NA | gold | gold | 1 | gold | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.1580 | 2018 | Medical research | NA | fr | 2574-3805 | 2574-3805 | JAMA Network Open | en | Clinical Features and Complications ofCoxiella burnetiiInfections From the French National Reference Center for Q Fever | 1 | 2587.492 | openAPC_estimation_issn | 2588.885 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | Aix-Marseille University, Institut de Recherche pour le Développement (IRD), Assistance Publique Hôpitaux de Marseille (APHM), Microbes, Evolution, Phylogénie et Infections, IHU (Institut Hospitalo-Universitaire)-Méditerranée Infection, Marseille, France.,French Reference Center for the Diagnosis and Study of Rickettsioses, Q Fever and Bartonelloses, IHU-Méditerranée Infection, Marseille, France.,Observatoire Régional de la Santé Provence-Alpes-Côte d’Azur, Marseille, France.,Aix-Marseille Université, Institut National de la Santé et de la Recherche Medicale, IRD, Sciences Economiques et Sociales de la Santé et Traitement de l’Information Médicale, Marseille, France.,Immunology Laboratory, APHM, Centre Hospitalier Universitaire Conception, Marseille, France. | 123101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 1 | 0 | NA | gold | gold | 1 | gold | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.1670 | 2018 | Medical research | NA | c(“it”, “dk”, “nl”, “cn”, “de”, “fr”) | 2574-3805 | 2574-3805 | JAMA Network Open | en | Sex Differences in Genetic Associations With Longevity | 1 | 2587.492 | openAPC_estimation_issn | 2588.885 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | Center for the Study of Aging and Human Development, Medical School of Duke University, Durham, North Carolina,Center for Healthy Aging and Development Studies, National School of Development, Raissun Institute for Advanced Studies, Peking University, Beijing, China,BGI Education Center, University of Chinese Academy of Sciences, Shenzhen, China,BGI–Shenzhen, Shenzhen, China,The First Affiliated Hospital, Institute of Translational Medicine, School of Medicine, Zhejiang University, Hangzhou, China,Department of Neurology, Medical Center, Duke University, Durham, North Carolina,Human Aging Research Institute and School of Life Science, Nanchang University, Jiangxi, China,James D. Watson Institute of Genome Sciences, Hangzhou, China,Max Planck Institute for Demographic Research, Rostock, Germany | 12339404142 | NA | NA | 42 | 1 | 0 | 0 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 0 | 1 | NA | gold | gold | 1 | gold | 0 | 0 | 0 |
| 10.1001/jamanetworkopen.2018.2355 | 2018 | Medical research | NA | fr | 2574-3805 | 2574-3805 | JAMA Network Open | en | Association of Intraventricular Hemorrhage and Death With Tocolytic Exposure in Preterm Infants | 1 | 2587.492 | openAPC_estimation_issn | 2551.237 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | hal-01989679 | 0 | NA | NA | 4 | gold | gold | Department of Neonatal Pediatrics and Intensive Care, Neuropediatrics and Rehabilitation Center, Reference Centre for Learning Disabilities of the Child, Rehabilitation Centre, Rouen University Hospital-Charles Nicolle Hospital, Rouen, France.,Institut National de la Santé et de la Recherche Medicale (INSERM) U1245, NEOVASC Team, Research and Biomedical Innovation Institute, Rouen Medical School, Normandy University, Rouen, France.,Department of Biostatistics, Rouen University Hospital, Rouen, France.,INSERM U1153, Epidemiology and Statistics Sorbonne Paris Cité Center, Obstetrical, Perinatal and Pediatric Epidemiology Team, Maternité Port-Royal, Paris Descartes University France, Département Hospitalo-Universitaire Risk in Pregnancy, Paris, France.,Unité de Recherche Clinique, Centre d’Investigation Clinique P1419, Cochin Hotel-Dieu Hospital, Assistance Publique-Hôpitaux de Paris, Paris, France. | 1236789 | NA | NA | 9 | 0 | 1 | NA | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 1 | 0 | NA | gold | gold | 1 | gold | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.2460 | 2018 | Medical research | NA | c(“fr”, “us”, “sg”, “ca”, “gb”) | 2574-3805 | 2574-3805 | JAMA Network Open | en | Association of Weight for Length vs Body Mass Index During the First 2 Years of Life With Cardiometabolic Risk in Early Adolescence | 1 | 2587.492 | openAPC_estimation_issn | 2551.237 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | gold | gold | Singapore Institute for Clinical Sciences, Agency for Science, Technology and Research, Singapore, Singapore,Division of Chronic Disease Research Across the Lifecourse, Department of Population Medicine, Harvard Medical School and Harvard Pilgrim Health Care Institute, Boston, Massachusetts,Department of Obstetrics and Gynecology, Yong Loo Lin School of Medicine, National University of Singapore, Singapore, Singapore,Department of Pediatrics, Faculty of Medicine, McGill University, Montreal, Quebec, Canada,Department of Epidemiology, Biostatistics, and Occupational Health, Faculty of Medicine McGill University, Montreal, Quebec, Canada,Department of Nutrition, Harvard T.H. Chan School of Public Health, Boston, Massachusetts | 1231011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 0 | 1 | NA | gold | gold | 1 | gold | 0 | 0 | 0 |
| 10.1001/jamanetworkopen.2018.4406 | 2018 | Medical research | NA | fr | 2574-3805 | 2574-3805 | JAMA Network Open | en | Association of Retinal Nerve Fiber Layer Thickness With Brain Alterations in the Visual and Limbic Networks in Elderly Adults Without Dementia | 1 | 2587.492 | openAPC_estimation_issn | 2644.104 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | hal-03205553 | 0 | NA | NA | 4 | gold | gold | University Bordeaux, Institut National de la Santé et de la Recherche Médicale (INSERM), Bordeaux Population Health Research Center, Unité Mixte de Recherche (UMR) 1219, Bordeaux, France.,Centre National de la Recherche Scientifique (CNRS), Institut de Neurosciences Cognitives et Intégratives d’Aquitaine (INCIA), UMR 5287, Bordeaux, France.,Ophthalmology, University Hospital, Bordeaux, France.,Memory Consultation, Centre Mémoire de Ressource et de Recherche (CMRR), University Hospital, Bordeaux, France.,Clinical Epidemiology Unit, INSERM, Centre d’Investigation Clinique (CIC) 1401, Bordeaux, France. | 12391011 | NA | NA | 11 | 1 | 0 | 1 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 1 | 0 | NA | gold | gold | 1 | gold | 1 | 1 | 1 |
| 10.1001/jamanetworkopen.2018.6364 | 2018 | Medical research | NA | c(“de”, “fr”, “ie”, “ca”) | 2574-3805 | 2574-3805 | JAMA Network Open | en | Risk Factors Associated With Boys’ and Girls’ Developmental Trajectories of Physical Aggression From Early Childhood Through Early Adolescence | 1 | 2587.492 | openAPC_estimation_issn | 2619.172 | 3000 | 2587.492 | 43 | American Medical Association | American Medical Association | hal-03098212 | 0 | NA | NA | 4 | gold | gold | Institute of Medical Psychology and Medical Sociology, University Medical Center Göttingen (UMG), Göttingen, Germany.,School of Public Health, University of Montreal, Montreal, Quebec, Canada.,Bordeaux Population Health Research Centre, Institut National de la Santé et de la Recherche Médicale (INSERM) U1219, University of Bordeaux, Bordeaux, France.,Department of Psychiatry, University of Pittsburgh, Pittsburgh, Pennsylvania.,Heinz College, Carnegie Mellon University, Pittsburgh, Pennsylvania.,School of Psychoeducation, University of Montreal, Montreal, Quebec, Canada.,Department of Pediatrics, University of Montreal, Montreal, Quebec, Canada.,Department of Psychology, University of Montreal, Montreal, Quebec, Canada.,School of Public Health, University College Dublin, Dublin, Ireland. | 1234678 | NA | NA | 8 | 1 | 0 | 0 | 1 | TRUE | TRUE | TRUE | publisher;repository | c(“green”, “gold”) | gold | cc-by | 0 | 1 | NA | gold | gold | 1 | gold | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.2065 | 2018 | Medical research | NA | c(“fr”, “it”, “de”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Neurologic Phenotypes Associated With Mutations in RTN4IP1 (OPA10) in Children and Young Adults | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | MitoLab Team, Unités Mixtes de Recherche Centre National de la Recherche Scientifique 6015-INSERM U1083, Institut MitoVasc, Angers University and Hospital, Angers, France.,Unit of Molecular Neurogenetics, Istituto di Ricovero e Cura a Carattere Scientifico, Foundation of the Carlo Besta Neurological Institute, Milan, Italy.,Wellcome Centre for Mitochondrial Research, Institute of Neuroscience, Newcastle University, Newcastle Upon Tyne, England.,Laboratory of Genetics in Ophthalmology, INSERM UMR1163, Institute of Genetic Diseases, Imagine, Paris, France.,Department of Paediatrics, Technische Universität München, Munich, Germany. | 123453839404142 | NA | NA | 42 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.3875 | 2018 | Medical research | NA | c(“fr”, “jp”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | New Criteria Needed for Antisynthetase Syndrome—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, Keio University School of Medicine, Tokyo, Japan,Université Pierre et Marie Curie, Paris VI (UPMC), Institut National de la Santé et de la Recherche Médicale, Unité Mixte de Recherche, Center of Research in Myology, Institute of Myology, Pitié-Salpêtrière University Hospital, Paris, France,Department of Neuromuscular Research, National Institute of Neuroscience, and Department of Genome Medicine Development, Medical Genome Center, National Center of Neurology and Psychiatry, Tokyo, Japan | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.3960 | 2018 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Prevalence of Systemic Atherosclerosis Burdens and Overlapping Stroke Etiologies and Their Associations With Long-term Vascular Prognosis in Stroke With Intracranial Atherosclerotic Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut National de la Santé Et de la Recherche Médicale, Laboratory for Vascular Translational Sciences 1148 and Université Paris-Diderot, Sorbonne-Paris Cité, Paris, France.,Department of Neurology and Stroke Center, Hôpital Bichat, Paris, France.,Department of Cardiology, Hôpital Bichat, Paris, France.,National Heart and Lung Institute, International Centre for Mathematical Sciences, Royal Brompton Hospital, Imperial College, London, England. | 123121314 | NA | NA | 14 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.4266 | 2018 | Medical research | NA | c(“it”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Early Cognitive, Structural, and Microstructural Changes in Presymptomatic C9orf72 Carriers Younger Than 40 Years | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | hal-01654000 | 1 | NA | NA | 4 | hybrid | NA | Sorbonne Universités, Université Pierre et Marie Curie Paris 06, Institut National de la Santé et de la Recherche Médicale, Centre National de la Recherche Scientifique, Institut du Cerveau et la Moelle, Hôpital Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris, Paris, France.,Aramis Project Team, Inria Research Center of Paris, Paris, France.,Department of Neuroradiology, Hôpital Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris, Paris, France.,Department of Radiology, Hôpital Saint Antoine, Assistance Publique-Hôpitaux de Paris, Paris, France.,Centre pour l’Acquisition et le Traitement des Images, Institut du Cerveau et la Moelle, Paris, France.,Centre de Référence des Démences Rares ou Précoces, Hôpital Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris, Paris, France.,Institute of Memory and Alzheimer’s Disease, Centre of Excellence of Neurodegenerative Disease, Department of Neurology, Hôpital Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris, Paris, France. | 12202122 | NA | NA | 22 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.4317 | 2018 | Medical research | NA | c(“fr”, “jp”, “cn”, “ge”, “se”, “de”, “ch”, “it”, “gb”, “ca”, “nl”, “au”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Efficacy and Safety of Deep Brain Stimulation in Tourette Syndrome | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Center for Movement Disorders and Neurorestoration, Department of Neurology, University of Florida, Gainesville.,Parkinson’s Disease Center and Movement Disorders Clinic, Baylor College of Medicine, Houston, Texas.,Yale Child Study Center, Yale University School of Medicine, New Haven, Connecticut.,Tourette’s Syndrome and Movement Disorders Center, Galeazzi Hospital, Milan, Italy.,Neurosurgical Department, Isituto Ortopedico Galeazzi, Milan, Italy.,Brain Map Lab, Center for Movement Disorders and Neurorestoration, Department of Neurology, University of Florida, Gainesville.,Fixel Center for Neurological Diseases, Gainesville, Florida. | 1234546474849 | NA | NA | 49 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.4373 | 2018 | Medical research | NA | c(“dz”, “fr”, “at”, “cg”, “br”, “nl”, “ch”, “ie”, “be”, “il”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Clinical, Biomarker, and Molecular Delineations and Genotype-Phenotype Correlations of Ataxia With Oculomotor Apraxia Type 1 | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Neurologie, Hôpitaux Universitaires de Strasbourg, Strasbourg, France.,Institut de Génétique et de Biologie Moléculaire et Cellulaire, Institut National de la Santé et de la Recherche Medicale (INSERM)-U964, Centre National de la Recherche Scientifique (CNRS)-Unité Mixte de Recherché (UMR) 7104, Université de Strasbourg, Illkirch, France.,Fédération de Médecine Translationnelle de Strasbourg, Université de Strasbourg, Strasbourg, France.,Faculté de Médecine et Ecole de Santé Publique, Université de Lubumbashi, Lubumbashi, République Démocratique du Congo.,Laboratoire de Génétique de Maladies Rares EA7402, Institut Universitaire de Recherche Clinique, Université de Montpellier, CHU Montpellier, Montpellier, France. | 123414243 | NA | NA | 43 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.4601 | 2018 | Medical research | NA | c(“fr”, “tr”, “il”, “ch”, “de”, “gb”, “nl”, “at”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Disease Course and Treatment Responses in Children With Relapsing Myelin Oligodendrocyte Glycoprotein Antibody–Associated Disease | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neuroinflammation, Queen Square Multiple Sclerosis Centre, University College London Institute of Neurology, London, United Kingdom.,Department of Paediatric Neurology, Great Ormond Street Hospital for Children, London, United Kingdom.,Department of Neurology, Erasmus University Medical Center, Rotterdam, the Netherlands.,Division of Paediatric Neurology, Department of Paediatrics, Medical University of Innsbruck, Innsbruck, Austria.,Neurology Department, John Radcliffe Hospital, Oxford, United Kingdom.,Department of Pediatric Neurology, Children’s Hospital Datteln, University Witten/Herdecke, Witten, Germany.,National Referral Center for Neuro-Inflammatory Diseases and Pediatric Neurology Department, Assistance Publique-Hôpitaux de Paris, Hôpital Bicêtre, Le Kremlin-Bicêtre, France.,Children’s Neurosciences, Evelina London Children’s Hospital at Guy’s and St Thomas’ National Health Service Foundation Trust, King’s Health Partners Academic Health Science Centre, London, United Kingdom.,Faculty of Life Sciences and Medicine, King’s College London, London, United Kingdom. | 123422232425 | NA | NA | 25 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
| 10.1001/jamaneurol.2017.4778 | 2018 | Medical research | NA | fr | 2168-6149 | 2168-6149 | JAMA Neurology | en | Development and Validation of a New Scoring System to Predict Survival in Patients With Myotonic Dystrophy Type 1 | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Cardiology Department, Cochin Hospital, Filière Neuromusculaire, Paris-Descartes University, Sorbonne Paris Cité University, Assistance Publique-Hôpitaux de Paris, Paris, France.,Neurology Department, Centre de Référence de Pathologie Neuromusculaire Paris-Est, Myology Institute, Filière Neuromusculaire, Pitié-Salpêtrière Hospital, Paris, France.,Thérapie des Maladies du Muscle Strié, Institut de Myologie, INSERM UMRS 974, Paris, France.,Assistance Publique-Hôpitaux de Paris, Hôtel-Dieu, Centre d’Epidémiologie Clinique, Paris, France.,Centre de Recherche Épidémiologie et Statistique Sorbonne Paris Cité, INSERM U1153, Paris, France.,Centre de Référence des Maladies Neuromusculaires Rares Nantes-Angers, Filière Neuromusculaire, Centre Hospitalier Universitaire de Nantes, Nantes, France. | 12181920 | NA | NA | 20 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.5121 | 2018 | Medical research | NA | c(“be”, “no”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Efficacy of Exome-Targeted Capture Sequencing to Detect Mutations in Known Cerebellar Ataxia Genes | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Institut National de la Santé et de la Recherche Medicale (INSERM) U1127, Paris, France.,Centre National de la Recherche Scientifique, Unité Mixte de Recherche (UMR) 7225, Paris, France.,Unité Mixte de Recherche en Santé 1127, Université Pierre et Marie Curie (Paris 06), Sorbonne Universités, Paris, France.,Institut du Cerveau et de la Moelle Epinière, Paris, France.,Laboratory of Human Molecular Genetics, de Duve Institute, Université Catholique de Louvain, Brussels, Belgium.,Centre de Référence de Neurogénétique, Hôpital de la Pitié-Salpêtrière, Assistance Publique-Hôpitaux de Paris (AP-HP), Paris, France. | 13536 | NA | NA | 36 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 1 | 0 | NA | hybrid | bronze | 0 | NA | 1 | 1 | 1 |
| 10.1001/jamaneurol.2017.5129 | 2018 | Medical research | NA | c(“de”, “fr”) | 2168-6149 | 2168-6149 | JAMA Neurology | en | Association of Serum Retinol-Binding Protein 4 Concentration With Risk for and Prognosis of Amyotrophic Lateral Sclerosis | 1 | 4833.984 | openAPC_estimation_issn | NA | NA | 4833.984 | 10 | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Neurology, University of Ulm, Ulm, Germany.,Institute for Epidemiology and Medical Biometry, University of Ulm, Ulm, Germany.,Department of Internal Medicine II-Cardiology, University of Ulm Medical Center, Ulm, Germany.,German Center for Cardiovascular Research (DZHK), Partner Site Munich Heart Alliance, Munich.,Institut National de la Santé et de la Récherche Médicale Unité 1118, Université de Strasbourg, Strasbourg, France. | 123456789 | NA | NA | 9 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | no license | 0 | 1 | NA | hybrid | bronze | 0 | NA | 0 | 0 | 0 |
import_manips(2019)
Temps d’exécution de l’import des données : 2.28 secs.
Dimensions du jeu de données : 137327 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/amajethics.2019.146 | 2019 | Computer and information sciences | NA | NA | 2376-6980 | 2376-6980 | AMA Journal of Ethics | en | Reimagining Medical Education in the Age of AI | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | TRUE | publisher;repository | c(“green”, “other”) | other | no license | NA | NA | 0 | subscription | NA | NA | NA | NA | NA | 0 |
| 10.1001/amajethics.2019.153 | 2019 | Computer and information sciences | NA | NA | 2376-6980 | 2376-6980 | AMA Journal of Ethics | en | Emerging Roles of Virtual Patients in the Age of AI | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | TRUE | publisher;repository | c(“green”, “other”) | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2018.18085 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Two-Year Survival Comparing Web-Based Symptom Monitoring vs Routine Surveillance Following Treatment for Lung Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Institut Inter-régional de Cancérologie Jean Bernard, Le Mans, France.,Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill.,Weprom, Angers, France.,Thoracic and Digestive Oncology, CHU Nantes, Nantes, France.,Service de pneumologie, Centre Hospitalier Universitaire, Angers, France.,Mayo Clinic, Scottsdale, Arizona.,Normandie Université-CORIA, Rouen, France. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.19349 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Antibiotics for Ceftriaxone-Resistant Gram-Negative Bacterial Bloodstream Infections | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Médecine Intensive Réanimation, Centre Hospitalier Universitaire de Bordeaux, Bordeaux, France,Service de Pharmacologie Médicale, Centre Hospitalier Universitaire de Bordeaux, Bordeaux, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2018.20045 | 2019 | Medical research | NA | c(“us”, “de”, “gb”, “nl”, “it”, “fr”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Triglyceride-Lowering LPL Variants and LDL-C–Lowering LDLR Variants With Risk of Coronary Heart Disease | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre for Naturally Randomized Trials, University of Cambridge, Cambridge, United Kingdom.,Institute for Advanced Studies, University of Bristol, Bristol, United Kingdom.,MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom.,Department of Vascular Medicine, Academic Medical Center, University of Amsterdam, Amsterdam, the Netherlands.,Imperial Centre for Cardiovascular Disease Prevention, Department of Primary Care and Public Health, School of Public Health, Imperial College London, London, United Kingdom.,Monash Cardiovascular Research Centre, University, Melbourne, Australia.,Thrombolysis in Myocardial Infarction Study Group, Division of Cardiovascular Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Department of Pharmacological and Biomolecular Sciences, University of Milan, Multimedica IRCCS, Milano, Italy. | 1231213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2018.20059 | 2019 | Medical research | NA | c(“fr”, “gp”, “mq”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Matched Sibling Donor Hematopoietic Stem Cell Transplantation With Transcranial Doppler Velocities in Children With Sickle Cell Anemia | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Referral Center for Sickle Cell Disease, Department of Pediatrics, Intercommunal Créteil Hospital, University Paris-Est, Créteil, France.,Referral Center for Sickle Cell Disease, Medical Imaging Department, Intercommunal Créteil Hospital, Créteil, France.,Bone Marrow Transplant Unit, Department of Hematology, Saint-Louis Hospital, University Paris-Diderot, Paris, France.,Department of Pediatric Hematology, Robert-Debré Hospital, University Paris-Diderot, Paris, France.,Referral Center for Sickle Cell Disease, Department of Pediatrics, Necker Hospital, University Paris-Descartes, Paris, France.,Department of Statistics, Saint-Louis Hospital, ECSTRA Team, UMR1153, INSERM, University Paris-Diderot, Paris, France. | 123452526272829 | NA | NA | 29 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.0071 | 2019 | Medical research | NA | c(“ec”, “fr”, “br”, “nl”, “cl”, “ar”, “us”, “uy”, “co”, “it”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Resuscitation Strategy Targeting Peripheral Perfusion Status vs Serum Lactate Levels on 28-Day Mortality Among Patients With Septic Shock | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Departmento de Medicina Intensiva, Facultad de Medicina, Pontificia Universidad Católica de Chile, Santiago.,Fundación Valle del Lili, Universidad ICESI, Department of Intensive Care Medicine, Cali, Colombia.,HCor Research Institute-Hospital do Coração, Faculdade de Medicina da Universidade de São Paulo, São Paulo, Brazil.,Hospital Interzonal de Agudos San Martín de La Plata, La Plata, Argentina.,Sanatorio Otamendi, Buenos Aires, Argentina. | 12345168169170200000 | NA | NA | 172 | 0 | 153 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.0554 | 2019 | Medical research | NA | c(“je”, “za”, “be”, “fr”, “ca”, “de”, “au”, “nl”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Patient Blood Management | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | German Red Cross Blood Transfusion Service and Goethe University Clinics, Frankfurt/Main, Germany.,Centre for Evidence-Based Practice (CEBaP), Belgian Red Cross, Mechelen, Belgium.,Department of Anaesthesiology, Intensive Care Medicine and Pain Therapy, University Hospital Frankfurt, Frankfurt/Main, Germany.,European Blood Alliance (EBA), Amsterdam, the Netherlands.,Departments of Intensive Care and of Anesthesia, University Hospital of Brest, Brest, France.,Transfusion Research Unit, Department of Epidemiology and Preventive Medicine, Monash University, Melbourne, Australia.,International Society of Blood Transfusion (ISBT), Amsterdam, the Netherlands. | 12345242526 | NA | NA | 26 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.0570 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Multifaceted Program to Reduce Job Strain in ICU Nurses | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University of Montpellier, Montpellier, France,University Hospital of Clermont-Ferrand, Clermont-Ferrand, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.0580 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Multifaceted Program to Reduce Job Strain in ICU Nurses—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Assistance Publique-Hôpitaux de Marseille, Aix-Marseille Université, Marseille, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.0709 | 2019 | Medical research | NA | c(“nz”, “us”, “dk”, “au”, “it”, “ca”, “gb”, “fr”, “se”, “mt”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Genetic Variants in NUDT15 With Thiopurine-Induced Myelosuppression in Patients With Inflammatory Bowel Disease | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Gastroenterology, Royal Devon and Exeter Hospital NHS Foundation Trust, Exeter, England.,IBD Pharmacogenetics Group, University of Exeter, Exeter, England.,University of Exeter Medical School, Exeter, England. | 123495051 | NA | NA | 51 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.10194 | 2019 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | CAR T-Cell Therapy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard Medical School, Boston, Massachusetts.,Dana-Farber Cancer Institute, Boston, Massachusetts.,Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.10551 | 2019 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Intensive vs Standard Blood Pressure Control With Cerebral White Matter Lesions | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Radiology, University of Pennsylvania, Philadelphia.,Department of Biostatistics and Data Science, Wake Forest School of Medicine, Winston-Salem, North Carolina.,Department of Neurology, University of Mississippi Medical Center, Jackson.,Department of Neurology, University of Utah School of Medicine, Salt Lake City.,Division of Nephrology and Hypertension, University of Utah School of Medicine, Salt Lake City.,Division of Nephrology and Hypertension, Department of Medicine, Case Western Reserve University, Cleveland, Ohio.,National Institute of Neurological Disorders and Stroke, Bethesda, Maryland.,Section of Gerontology and Geriatric Medicine, Department of Internal Medicine, Wake Forest School of Medicine, Winston-Salem, North Carolina. | 23456454647481 | NA | NA | 48 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.10568 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Population Health Management: Saving Lives and Saving Money? | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | K.T. Li Professor of Global Health and Health Policy at the Harvard T.H. Chan School of Public Health. | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.10931 | 2019 | Medical research | NA | c(“nl”, “cl”, “es”, “ru”, “fi”, “cn”, “fr”, “pk”, “gb”, “us”, “dk”, “gr”, “jp”, “au”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Thyroid Function Test Abnormalities and Thyroid Autoimmunity With Preterm Birth | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Internal Medicine, Erasmus University Medical Center, Rotterdam, the Netherlands.,Academic Center for Thyroid Diseases, Erasmus University Medical Center, Rotterdam, the Netherlands.,Thyroid Research Group, Systems Immunity Research Institute, School of Medicine, Cardiff University, Cardiff, England. | 2344445464748 | NA | NA | 48 | 0 | 20 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.1113 | 2019 | Medical research | NA | c(“fr”, “au”, “ca”, “de”, “ie”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Epicutaneous Immunotherapy vs Placebo on Reaction to Peanut Protein Ingestion Among Children With Peanut Allergy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Children’s Hospital Colorado, University of Colorado Denver School of Medicine, Aurora.,Gordon Sussman Clinical Research, Toronto, Ontario, Canada.,Centre Hospitalier Universitaire Sainte-Justine, Montreal, Quebec, Canada.,Icahn School of Medicine at Mount Sinai, New York, New York.,Boston Children’s Hospital, Boston, Massachusetts.,Baylor College of Medicine, Texas Children’s Hospital, Houston.,National Jewish Health, Denver, Colorado.,DBV Technologies, Montrouge, France.,Massachusetts General Hospital, Boston. | 123452930313233 | NA | NA | 33 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.11578 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | What Is the Value of Market-Wide Health Care Price Transparency? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts. | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.1194 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Post Hoc Bayesian Analyses | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Anesthesiology and Intensive Care Department, University Hospital of Besançon, Besançon, France,Public Health Department, University Hospital of Strasbourg, Strasbourg, France | 12 | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.12345 | 2019 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Medicaid Expansion and Health | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | School of Social Work, Columbia University, New York, New York.,Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Brigham & Women’s Hospital, Boston, Massachusetts. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.13187 | 2019 | Medical research | NA | c(“fr”, “us”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Can Plant-Based Meat Alternatives Be Part of a Healthy and Sustainable Diet? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Nutrition, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Channing Division of Network Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Department of Environmental Health, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Center for Climate, Health, and the Global Environment, Harvard T.H. Chan School of Public Health, Boston, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.13771 | 2019 | Biology (fond.) | NA | c(“cn”, “fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Trends in Dietary Carbohydrate, Protein, and Fat Intake and Diet Quality Among US Adults, 1999-2016 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Nutrition and Food Hygiene, School of Public Health, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China.,Friedman School of Nutrition Science and Policy, Tufts University, Boston, Massachusetts.,Department of Nutrition, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Epidemiology and Population Health, Albert Einstein College of Medicine, Bronx, New York.,Jean Mayer USDA Human Nutrition Research Center on Aging, Tufts University, Boston, Massachusetts.,Channing Division of Network Medicine, Department of Medicine, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 123789 | NA | NA | 9 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.14226 | 2019 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Spontaneous Breathing Trials and Successful Extubation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Intensive Care Medicine, Hospital de Sant Pau, Barcelona, Spain”),list(name = “Interdepartmental Division of Critical Care Medicine, University of Toronto, Toronto, Ontario, Canada”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.1432 | 2019 | Medical research | NA | c(“fr”, “fi”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Midlife Diet With Subsequent Risk for Dementia | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université Montpellier, Inserm, U1198, Ecole Pratique des Hautes Etudes, Montpellier, France.,Department of Epidemiology and Public Health, University College London, London, England.,Department of Psychiatry and Autism Resources Centre, University Research and Hospital Center of Montpellier, Inserm, Montpellier, France.,Inserm, U1153, Epidemiology of Ageing and Neurodegenerative Diseases, Université Paris Descartes, Paris, France.,Clinicum, Faculty of Medicine, University of Helsinki, Helsinki, Finland. | 12456 | NA | NA | 6 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.14390 | 2019 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Requests for Diagnoses of Sexually Transmitted Diseases on a Social Media Platform | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, University of California, San Diego, La Jolla.,Department of Family Medicine and Public Health, University of California, San Diego, La Jolla.,Institute for Disease Modeling, Bellevue, Washington.,Department of Computer Science, Johns Hopkins University, Baltimore, Maryland. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.14607 | 2019 | Medical research | NA | c(“ca”, “dk”, “us”, “be”, “fr”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Selepressin vs Placebo on Ventilator- and Vasopressor-Free Days in Patients With Septic Shock | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Critical Care Medicine, St. Luc University Hospital, Université Catholique de Louvain, Brussels, Belgium.,Berry Consultants LLC, Austin, Texas.,Ferring Pharmaceuticals A/S, Copenhagen, Denmark.,StraDevo A/S, Kongens Lyngby, Denmark.,Medical-Surgical Intensive Care Unit, Inserm CIC1435, Dupuytren Teaching Hospital, Limoges, France.,Clinical Research, Investigation, and Systems Modeling of Acute Illness Center, Department of Critical Care, University of Pittsburgh, Pittsburgh, Pennsylvania.,Associate Editor, JAMA. | 1234536373839 | NA | NA | 39 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.14608 | 2019 | Medical research | NA | c(“es”, “cn”, “it”, “fr”, “il”, “ie”, “dk”, “in”, “gr”, “us”, “gb”, “ch”, “be”, “de”, “cz”, “nl”, “pt”) | 0098-7484 | 0098-7484 | JAMA | en | Changes in End-of-Life Practices in European Intensive Care Units From 1999 to 2016 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Anesthesiology, Critical Care Medicine, and Pain Medicine, Hadassah Medical Center, Hebrew University of Jerusalem, Jerusalem, Israel.,Department of Anesthesiology, Pharmacology, and Intensive Care, University Hospital of Geneva, Geneva, Switzerland.,Department of Anesthesiology and Intensive Care Medicine, Charité Universitätsmedizin Berlin, Berlin and Klinik Bavaria, Kreischa, Germany.,Intensive Care Department, Hospital S. Antonio, Centro Hospitalar do Porto, Porto, Portugal.,First Department of Intensive Care Medicine, University of Athens Medical School, Evaggelsimos General Hospital, Athens, Greece.,Department of Intensive Care, Royal Berkshire Hospital, Berkshire, United Kingdom.,Department of Anesthesiology and Critical Care, Medizin Campus Bodensee-Tettnang Hospital, Tettnang, Germany.,Department of Intensive Care, University Medical Center Utrecht, Utrecht, the Netherlands.,Intensive Care Department, University Hospital SAS of Jerez, Jerez de la Frontera, Spain. | 123453031323334 | NA | NA | 34 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.14901 | 2019 | Medical research | NA | c(“fr”, “re”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Postextubation High-Flow Nasal Oxygen With Noninvasive Ventilation vs High-Flow Nasal Oxygen Alone on Reintubation Among Patients at High Risk of Extubation Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre Hospitalier Universitaire de Poitiers, Médecine Intensive Réanimation, Poitiers, France.,INSERM Centre d’Investigation Clinique 1402 ALIVE, Université de Poitiers, Poitiers, France.,Groupe Hospitalier Régional d’Orléans, Médecine Intensive Réanimation, Orléans, France.,Centre Hospitalier Universitaire de Rennes, Hôpital Ponchaillou, Service des Maladies Infectieuses et Réanimation Médicale, Rennes, France. | 123435363738 | NA | NA | 38 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.14969 | 2019 | Medical research | NA | c(“us”, “ke”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Cryotherapy vs Loop Electrosurgical Excision Procedure on Cervical Disease Recurrence Among Women With HIV and High-Grade Cervical Lesions in Kenya | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Global Health, University of Washington, Seattle.,Department of Epidemiology, University of Washington, Seattle.,Prevention and Implementation Group, International Agency for Research on Cancer (WHO-IARC), Lyon, France.,Kenya Medical Research Institute, Nairobi, Kenya.,Department of Medicine, University of Washington, Seattle. | 1231314 | NA | NA | 14 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.1534 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Prophylactic Hypothermia for Severe Traumatic Brain Injury | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Neuro-Intensive Care Unit, Fondation Ophtalmologique Rothschild, Paris, France,Département d’Anesthésie-Réanimation, Hôpital Lariboisière, Paris, France,Neurological Department, Fondation Ophtalmologique Rothschild, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.15918 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Disappointment in the Value-Based Era | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Harvard Medical School, Boston, Massachusetts.,Harvard Global Health Institute, Cambridge, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.16117 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Use of an ICU Diary and Patient Posttraumatic Stress Disorder Symptoms—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Medical ICU, French British Hospital, Levallois-Perret, France,Université Grenoble Alpes Inserm, CHU Grenoble Alpes HP2, Grenoble, France,Université Paris APHP-Bichat, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.16181 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | The San Francisco Ban and the Future of e-Cigarettes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvey V. Fineberg professor of the practice of public health leadership at the Harvard T.H. Chan School of Public Health and the Harvard Kennedy School, Boston.,Vice president for tobacco control and director, Center for Tobacco Control, American Cancer Society.,Adjunct professor at the University of Michigan School of Public Health, Ann Arbor. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.17380 | 2019 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Vitamin D and Omega-3 Fatty Acid Supplementation on Kidney Function in Patients With Type 2 Diabetes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Nephrology, Department of Medicine, University of Washington, Seattle.,Kidney Research Institute, University of Washington, Seattle.,Puget Sound VA Healthcare System, Seattle, Washington.,Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Division of Preventive Medicine, Brigham and Women’s Hospital, Boston, Massachusetts. | 12101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.17478 | 2019 | Medical research | NA | c(“ca”, “it”, “us”, “gb”, “fr”, “ge”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Fresh vs Standard-issue Red Blood Cell Transfusions on Multiple Organ Dysfunction Syndrome in Critically Ill Pediatric Patients | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Critical Care, Department of Pediatrics, Washington University School of Medicine in St Louis, St Louis, Missouri.,Division of Pediatric Critical Care, Centre Hospitalier Universitaire (CHU) Sainte-Justine, Université de Montréal and Centre de Recherche du Centre Hospitalier de l’Université de Montréal, Montreal, Quebec, Canada.,Ottawa Hospital Research Institute, Departments of Medicine & Surgery, University of Ottawa School of Epidemiology and Public Health, University of Ottawa, Ottawa, Ontario, Canada.,Département de médecine, Centre de recherche du CHUM and Chaire de médecine transfusionnelle Héma-Québec-Bayer de l’Université de Montréal, Centre hospitalier de l’Université de Montréal, Montreal, Quebec, Canada.,Western University, Children’s Hospital, London Health Sciences Centre, London, Ontario, Canada.,Division of Pediatric Hematology and Oncology, Division of Pediatric Critical Care Medicine, Department of Pediatrics, University of Minnesota Medical School, Minneapolis.,Research CHU de Québec-Université Laval Centre, Population Health and Optimal Health Practices and Research Unit, Trauma, Emergency, Critical Care Medicine, Université Laval and Department of Anesthesiology and Critical Care Medicine, Division of Critical Care Medicine, Faculty of Medicine, Université Laval, Québec City, Québec, Canada. | 123452021222324 | NA | NA | 24 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.18254 | 2019 | Medical research | NA | c(“re”, “fr”, “lu”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Rocuronium vs Succinylcholine on Endotracheal Intubation Success Rate Among Patients Undergoing Out-of-Hospital Rapid Sequence Intubation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Emergency, CHU de la Réunion, Allée des Topazes, Saint Denis, Réunion, France.,Groupe Hospitalo-Universitaire Henri Mondor, SAMU 94, Assistance Publique-Hôpitaux de Paris, Créteil, France.,SMUR 95, Centre Hospitalier de Gonesse, Gonesse, France.,Department of Anesthesia & Critical Care - SAMU, Assistance Publique - Hôpitaux de Paris, Hôpital Necker-Enfants Malades, Université Paris Descartes, Paris, France.,Département d’Anesthésie-Réanimation-SMUR, Hôpital Universitaire Lariboisière, AP-HP, Paris, France.,AP-HP, Service d’Aide Médicale d’Urgence (SAMU) de Paris and Paris Sudden Death Expertise Center, Université Paris Descartes, Paris, France.,INSERM CIC 1410 Clinical and Epidemiology/ CHU Réunion/Université de la Réunion, Saint-Pierre, Reunion, France.,Department of Population Health, Luxembourg Institute of Health, Strassen, Luxembourg.,Departement d’Informatique Clinique, Centre Hospitalier Universitaire de La Réunion Site Félix Guyon, Saint-Denis, France.,Department of Emergency, CHU de la Réunion, Université de la Réunion, Réunion, France. | 1234516171819 | NA | NA | 19 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.18598 | 2019 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Strategy of Comprehensive Vasodilation vs Usual Care on Mortality and Heart Failure Rehospitalization Among Patients With Acute Heart Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = c(“Department of Cardiology and Cardiovascular Research Institute Basel (CRIB), University Hospital Basel, University of Basel, Basel, Switzerland”, “GREAT Research Network, Rome, Italy”)),list(name = “Queen Ioanna University Hospital Sofia, Department of Cardiology, Medical University of Sofia, Sofia, Bulgaria”),list(name = “Department of Cardiology, Kantonsspital St Gallen, St Gallen, Switzerland”),list(name = c(“Department of Cardiology and Cardiovascular Research Institute Basel (CRIB), University Hospital Basel, University of Basel, Basel, Switzerland”, “GREAT Research Network, Rome, Italy”, “Department of Internal Medicine, University Hospital Basel, University of Basel, Basel, Switzerland”)),list(name = “University Medical Center, Johannes Gutenberg University Mainz, Mainz, Germany”),list(name = “Department of Cardiology, Luzerner Kantonsspital, Luzern, Switzerland”) | NA | NA | NA | 30 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.2028 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | High-Flow Oxygen Therapy for Respiratory Failure in Immunocompromised Patients | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Médecine Intensive Réanimation, CHU de Poitiers, Poitiers, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.2064 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | High-Flow Oxygen Therapy for Respiratory Failure in Immunocompromised Patients—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Medical Intensive Care Unit, APHP, Hôpital St-Louis, Paris, France,Department of Biostatistics, APHP, Hôpital St-Louis, Paris, France,Medical Intensive Care Unit, APHP, Hôpital Pitié-Salpêtrière, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.2072 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Acute Kidney Injury Related to Sepsis—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | St Louis Hospital, University Paris Diderot, Paris, France,Center for Critical Care Nephrology, University of Pittsburgh, Pittsburgh, Pennsylvania | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.2942 | 2019 | Medical research | NA | c(“fr”, “jp”, “de”, “mx”, “dk”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Additional Oral Semaglutide vs Sitagliptin on Glycated Hemoglobin in Adults With Type 2 Diabetes Uncontrolled With Metformin Alone or With Sulfonylurea | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Dallas Diabetes Research Center at Medical City, Dallas, Texas.,Hillcrest Family Health Center, Waco, Texas.,Department of Medicine III, Carl Gustav Carus University Hospital, Technische Universität Dresden, Dresden, Germany.,Paul Langerhans Institute Dresden, Helmholtz Center Munich at Technische Universität Dresden, Dresden, Germany.,Novo Nordisk A/S, Søborg, Denmark.,Endocrinology, Diabetology and Nutrition, Clinique Portes du Sud, Venissieux, France.,Departamento Endocrinología, Instituto Mexicano del Seguro Social, Ciudad Madero, Mexico.,Department of Metabolism and Endocrinology, Juntendo University Graduate School of Medicine, Tokyo, Japan.,Diabetes Research Centre, University of Leicester, Leicester, England. | 12347891011 | NA | NA | 11 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.3820 | 2019 | Medical research | NA | c(“it”, “sk”, “gr”, “pl”, “es”, “no”, “fi”, “dk”, “au”, “ca”, “ua”, “nl”, “fr”, “de”, “pt”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Gestational Weight Gain With Adverse Maternal and Infant Outcomes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Generation R Study Group, Erasmus MC, University Medical Center, Rotterdam, the Netherlands.,Department of Pediatrics, Erasmus MC, University Medical Center, Rotterdam, the Netherlands.,MRC Lifecourse Epidemiology Unit, University of Southampton, Southampton, England.,Department of Epidemiology, Erasmus MC, University Medical Center, Rotterdam, the Netherlands. | 23466671 | NA | NA | 67 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.3946 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Fecal Microbiota Transplantation for Ulcerative Colitis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Gastroenterology, Hospices Civils de Lyon, Lyon, France,Department of Functional Coprology, Assistance Publique-Hôpitaux de Paris, Paris, France,Department of Gastroenterology, Assistance Publique-Hôpitaux de Paris, Paris, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.4149 | 2019 | Medical research | NA | c(“de”, “cz”, “gb”, “se”, “fr”, “be”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Trans-Nasal Evaporative Intra-arrest Cooling on Functional Neurologic Outcome in Out-of-Hospital Cardiac Arrest | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, Center for Resuscitation Science, Karolinska Institute, Solna, Sweden.,Department of Intensive Care, Erasme Hospital, Université Libre de Bruxelles (ULB), Brussels, Belgium.,Emergency Medical Services of the Hradec Kralove Region, Czech Republic.,Department of Anesthesiology and Intensive Care, Norrtälje Hospital, Norrtälje, Sweden.,Department of Physiology and Pharmacology, Karolinska Institute, and Perioperative Medicine and Intensive Care, Karolinska University Hospital, Stockholm, Sweden. | 12341920212223 | NA | NA | 23 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.5358 | 2019 | Medical research | NA | c(“je”, “in”, “br”, “be”, “fr”, “ca”, “fi”, “jp”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Recombinant Human Soluble Thrombomodulin on Mortality in Patients With Sepsis-Associated Coagulopathy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Intensive Care, Erasme Hospital, Université libre de Bruxelles, Brussels, Belgium.,ICU Department, Inserm CIC-1435 & UMR-1092, CHU Dupuytren, Limoges, France.,Department of Anesthesiology, Intensive Care and Transfusiology, Kuban State Medical University, Krasnodar, Russia.,Department of Medicine, Maulana Azad Medical College and associated hospitals, New Delhi, India.,Centre Hospitalier Universitaire de Nantes, Nantes, France.,National Hospital Organization, Nagoya Medical Center, Nagoya, Japan.,Asahi-Kasei Pharma Corporation, Tokyo, Japan.,Asahi-Kasei Pharma America Corporation, Waltham, Massachusetts. | 123452324252627 | NA | NA | 27 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.7540 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Setting Positive End-Expiratory Pressure in Mechanically Ventilated Patients Undergoing Surgery | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre Hospitalier Universitaire Clermont-Ferrand, Département de Médecine Périopératoire, Anesthésie et Réanimation, Clermont-Ferrand, France | 12 | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.7769 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Coordinating Community Planning for Transportation and Health | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvey V. Fineberg professor of the practice of public health leadership at the Harvard T.H. Chan School of Public Health and the Harvard Kennedy School.,Founder of JTR Strategies. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.8859 | 2019 | Medical research | NA | c(“us”, “it”, “fr”, “de”, “cn”, “nl”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Peroral Endoscopic Myotomy vs Pneumatic Dilation on Symptom Severity and Treatment Outcomes Among Treatment-Naive Patients With Achalasia | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Gastroenterology and Hepatology, Amsterdam UMC, University of Amsterdam, Amsterdam, the Netherlands.,Department of Gastroenterology, Evangelisches Krankenhaus Düsseldorf, Düsseldorf, Germany.,Digestive Endoscopy Unit, Agostino Gemelli University Hospital, Universita Cattolica del Sacro Cuore, Rome, Italy.,Feinberg School of Medicine, Northwestern University, Chicago, Illinois. | 123451213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.9053 | 2019 | Medical research | NA | c(“kr”, “us”, “au”, “my”, “cz”, “it”, “be”, “tr”, “gb”, “fr”, “de”, “il”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Recombinant Zoster Vaccine on Incidence of Herpes Zoster After Autologous Stem Cell Transplantation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | GlaxoSmithKline, Wavre, Belgium.,Hospital Universitario 12 de Octubre, Madrid, Spain.,GlaxoSmithKline, Rixensart, Belgium.,CureVac AG, Tübingen, Germany.,University Hospital of Montpellier, Montpellier, France.,Halozyme Therapeutics, San Diego, California.,University of Pennsylvania, Philadelphia.,Duke University Medical Center, Durham, North Carolina. | 123452728293031 | NA | NA | 31 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.9055 | 2019 | Medical research | NA | c(“fr”, “us”, “gb”, “jp”, “be”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Filgotinib vs Placebo on Clinical Response in Patients With Moderate to Severe Rheumatoid Arthritis Refractory to Disease-Modifying Antirheumatic Drug Therapy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Immunology and Rheumatology, Stanford University, Stanford, California.,Division of Rheumatology, Allergy, and Immunology, University of California, San Diego, La Jolla.,Department of Rheumatology, Strasbourg University Hospital, Strasbourg, France.,Gilead Sciences Inc, Foster City, California.,Galapagos NV, Mechelen, Belgium.,Department of Rheumatology, Universitair Ziekenhuis Leuven, Leuven, Belgium.,Northumbria Healthcare, North Shields, United Kingdom.,Division of Rheumatology, Keio University School of Medicine, Tokyo, Japan. | 12345910111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.9058 | 2019 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of an ICU Diary on Posttraumatic Stress Disorder Symptoms Among Patients Receiving Mechanical Ventilation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Infection, Antimicrobials, Modelling, Evolution (IAME), UMR 1137, INSERM, Paris Diderot University, Department of Biostatistics - HUPNVS. - AP-HP, UFR de Médecine - Bichat University Hospital, Paris, France.,Department of Biostatistics, Outcomerea, Paris, France.,Medical unit, French British Hospital, Levallois-Perret, France.,LPPS-EA4057, Laboratory of Psychopathology and Health Process, Paris Descartes University, Paris, France.,Medical ICU, Les Oudaries Hospital, La Roche-sur-Yon, Vendée, France.,Grenoble Alpes University, INSERM, University hospital Grenoble Alpes, HP2, Grenoble, France.,Medical ICU, Bichat University Hospital, Paris, France. | 1234445 | NA | NA | 45 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.9302 | 2019 | Medical research | NA | c(“us”, “ca”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Extracorporeal Life Support for Adults With Respiratory Failure and Related Indications | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Pulmonary, Allergy, and Critical Care Medicine, Columbia University College of Physicians and Surgeons, NewYork-Presbyterian Hospital, New York.,Center for Acute Respiratory Failure, NewYork-Presbyterian Hospital, New York.,Interdepartmental Division of Critical Care Medicine, University of Toronto, Toronto, Ontario, Canada.,Keenan Centre for Biomedical Research, Li Ka Shing Knowledge Institute, St Michael’s Hospital, Toronto, Ontario, Canada.,Sorbonne Université INSERM Unité Mixte de Recherche (UMRS) 1166, Institute of Cardiometabolism and Nutrition, Paris, France.,Service de Médecine Intensive-Réanimation, Institut de Cardiologie, Assistance Publique-Hôpitaux de Paris (APHP) Hôpital Pitié-Salpêtrière, Paris, France. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.4320 | 2019 | Medical research | NA | c(“ca”, “us”, “es”, “ch”, “ge”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Outcomes From Transcatheter Aortic Valve Replacement in Patients With Low-Flow, Low-Gradient Aortic Stenosis and Left Ventricular Ejection Fraction Less Than 30% | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Quebec Heart & Lung Institute, Laval University, Quebec City, Quebec, Canada.,Emory University Hospital, Atlanta, Georgia.,Centre Hospitalier Régional et Universitaire de Brest, Brest, France.,University of Pittsburgh Medical Center, University of Pittsburgh, Pittsburgh, Pennsylvania.,Cleveland Clinic, Cleveland, Ohio. | 123452930313233 | NA | NA | 33 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.4537 | 2019 | Medical research | NA | c(“ge”, “es”, “us”, “dk”, “au”, “fi”, “is”, “jp”, “it”, “de”, “no”, “ca”, “gb”, “fr”, “se”, “il”, “nl”, “at”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Cardiovascular Risk Factors Associated With Venous Thromboembolism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | London School of Hygiene and Tropical Medicine, London, United Kingdom,MRC/BHF Cardiovascular Epidemiology Unit, Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom,National Institute for Health Research Blood and Transplant Research Unit in Donor Health and Genomics, University of Cambridge, Cambridge, United Kingdom | 12372737475 | NA | NA | 75 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2018.4615 | 2019 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Thyroid Function Genetic Predictors With Atrial Fibrillation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, Vanderbilt University Medical Center, Nashville, Tennessee.,Sorbonne Université, Institut National de la Santé et de la Recherche Médicale (INSERM) CIC Paris-Est, AP-HP, Institute of Cardio metabolism and Nutrition (ICAN), Pitié-Salpêtrière Hospital, Department of Pharmacology, Paris, France.,Department of Pharmacology, Vanderbilt University Medical Center, Nashville, Tennessee.,Biomedical Informatics, Vanderbilt University Medical Center, Nashville, Tennessee. | 1232223 | NA | NA | 23 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 1 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2018.4729 | 2019 | Medical research | NA | c(“it”, “de”, “fr”, “ca”, “gb”, “nl”, “jp”, “cl”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Analysis of Outcomes in Ischemic vs Nonischemic Cardiomyopathy in Patients With Atrial Fibrillation | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiovascular Diseases, Catholic University School of Medicine, Santiago, Chile.,University of Besançon, Besançon, France.,Thrombosis Research Institute, London, England.,University of Perugia School of Medicine, Perugia, Italy.,Duke Clinical Research Institute, Durham, North Carolina.,McMaster University, Hamilton, Ontario, Canada.,Onze Lieve Vrouwe Gasthuis, Amsterdam, the Netherlands.,University College London, London, United Kingdom. | 12341415161718 | NA | NA | 18 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.0014 | 2019 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Baseline Characteristics and Risk Profiles of Participants in the ISCHEMIA Randomized Clinical Trial | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Cardiovascular Clinical Research Center, New York University School of Medicine, New York, New York”),list(name = “Duke Clinical Research Institute, Duke University Medical Center, Durham, North Carolina”),list(name = “Dayanand Medical College and Hospital, Ludhiana, Punjab, India”),list(name = “E. Meshalkin National Medical Research Center, Ministry of Health of the Russian Federation, Novosibirsk, Russia”),list(name = “National Heart, Lung, and Blood Institute, Bethesda, Maryland”),list(name = “Stanford University School of Medicine, Stanford, California”) | NA | NA | NA | 28 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.0091 | 2019 | Medical research | NA | c(“de”, “fr”, “us”, “ge”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Two-Year Outcomes After Transcatheter Aortic Valve Replacement With Mechanical vs Self-expanding Valves | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Cardiovascular Surgery, Houston Methodist DeBakey Heart and Vascular Center, Houston, Texas.,Evanston Hospital Cardiology Division, Northshore University Health System, Evanston, Illinois.,Piedmont Heart Institute, Atlanta, Georgia.,Cedars-Sinai Heart Institute, Los Angeles, California.,Aurora St Luke’s Medical Center, Milwaukee, Wisconsin.,Clinique Pasteur, Toulouse, France.,Providence St Vincent Medical Center, Portland, Oregon.,Boston Scientific Corp, Marlborough, Massachusetts. | 123451819202122 | NA | NA | 22 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.0849 | 2019 | Medical research | NA | c(“it”, “de”, “fr”, “jp”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Patisiran, an RNA Interference Therapeutic, With Regional Left Ventricular Myocardial Strain in Hereditary Transthyretin Amyloidosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Shinshu University Hospital, Matsumoto, Nagano, Japan.,National Reference Center for FAP/Assitance Publique-Hôpitaux de Paris/ Inserm U 1195/ CHU Bicêtre, Le Kremlin- Bicêtre, France.,Heidelberg University Hospital, Heidelberg, Germany.,Alnylam Pharmaceuticals, Cambridge, Massachusetts. | 12341112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.1049 | 2019 | Medical research | NA | c(“fr”, “nl”, “us”, “de”, “je”, “sg”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Rivaroxaban With Thromboembolic Events in Patients With Heart Failure, Coronary Disease, and Sinus Rhythm | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiology Division, Department of Medicine, University of California, San Diego, La Jolla.,Division of Biostatistics, School of Public Health, University of Minnesota, Minneapolis.,Berlin-Brandenburg Center for Regenerative Therapies, Berlin, Germany.,Department of Cardiology, German Center for Cardiovascular Research partner site Berlin, Charite Universitatsmedizin Berlin, Berlin, Germany.,Janssen Research and Development, Raritan, New Jersey.,Research and Development, Pharmaceuticals, Thrombosis and Hematology Therapeutic Area, Bayer US, Whippany, New Jersey.,Department of Cardiology, University Medical Center Groningen, University of Groningen, Groningen, the Netherlands.,Universite de Lorraine, INSERM Unite 1116, Vandoeuvre les Nancy, France.,Clinical Investigation Center 1433, French Clinical Research Infrastructure Network, Investigation Network Initiative-Cardiovascular and Renal Clinical Trialists, Centre Hospitalier Regional et Universitaire de Nancy, Vandoeuvre les Nancy, France. | 123412131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.1510 | 2019 | Medical research | NA | c(“us”, “fr”, “ca”, “nl”, “il”, “se”, “gb”, “br”, “je”, “de”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | P2Y12 Inhibitor Switching in Response to Routine Notification of CYP2C19 Clopidogrel Metabolizer Status Following Acute Coronary Syndromes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Duke Clinical Research Institute, Duke University School of Medicine, Durham, North Carolina.,University of Freiburg, Faculty of Medicine, Internal Medicine III, Freiburg, Germany.,Mazankowski Alberta Heart Institute and University of Alberta, Edmonton, Alberta, Canada.,Janssen Research and Development, Raritan, New Jersey.,Bayer AG, Wuppertal, Germany.,PERFUSE Study Group, Beth Israel Deaconess Hospital, Harvard Medical School, Boston, Massachusetts. | 123451112131415 | NA | NA | 15 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.1581 | 2019 | Medical research | NA | c(“nl”, “fr”, “ca”, “gb”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Genetic Variation in LPA, Calcific Aortic Valve Stenosis in Patients Undergoing Cardiac Surgery, and Familial Risk of Aortic Valve Microcalcification | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre de Recherche de l’Institut Universitaire de Cardiologie et de Pneumologie de Québec, Québec City, Québec, Canada.,Department of Medicine, Faculty of Medicine, Université Laval, Québec City, Québec, Canada.,Department of Molecular Biology, Medical Biochemistry and Pathology, Faculty of Medicine, Université Laval, Québec City, Québec, Canada.,L’Institut du Thorax, Institut National de la Santé et de la Recherche Médicale, Centre National de la Recherche Scientifique, Université de Nantes, Nantes, France.,Department of Molecular Medicine, Faculty of Medicine, Université Laval, Québec City, Québec, Canada. | 123242526 | NA | NA | 26 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.1966 | 2019 | Medical research | NA | c(“fr”, “ch”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Studies Evaluating Statin Adherence and Outcome Should Adjust for Smoking Persistence and Antiplatelet Treatment Discontinuation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de cardiologie, Centre Hospitalier Régional Universitaire de Grenoble-Alpes, Grenoble, France,Departement Public Health, Medizinische Fakultät, Universität Basel, Basel, Switzerland,Cardiology Department, Groupement des hôpitaux de l’institut Catholique de Lille, Université Catholique de Lille, Lille, France | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2019.2298 | 2019 | Medical research | NA | c(“be”, “eg”, “fr”, “kr”, “it”, “lv”, “za”, “jp”, “nl”, “ca”, “au”, “sa”, “pt”, “us”, “fi”, “ge”, “tr”, “es”, “gb”, “de”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Comparison of Major Adverse Cardiac Events Between Instantaneous Wave-Free Ratio and Fractional Flow Reserve–Guided Strategy in Patients With or Without Type 2 Diabetes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Samsung Medical Center, Sungkyunkwan University School of Medicine, Seoul, South Korea.,Seoul National University Hospital and Institute on Aging, Seoul National University, Seoul, South Korea.,Cancer Research UK and University College London Cancer Trials Centre, University College London, London, England.,Inje University Ilsan Paik Hospital, Daehwa-Dong, South Korea.,Duke University, Durham, North Carolina.,Hammersmith Hospital, Imperial College London, London, England.,Hospital Clínico San Carlos, IDISSC and Universidad Complutense de Madrid, Madrid, Spain. | 23456626364651 | NA | NA | 65 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.2597 | 2019 | Medical research | NA | NA | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Assessment of the German and Italian Stress Cardiomyopathy Score for Risk Stratification for In-hospital Complications in Patients With Takotsubo Syndrome | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Medical and Surgical Sciences, University of Foggia, Foggia, Italy”),list(name = “Interventional Cardiology, Cardiovascular Institute, Hospital Clínico Universitario San Carlos, Madrid, Spain”),list(name = c(“Medical Clinic II (Cardiology/Angiology/Intensive Care Medicine), University Heart Center Lübeck, Lübeck, Germany”, “German Center for Cardiovascular Research (DZHK), Partner Site Hamburg/Kiel/Lübeck, Lübeck, Germany”)),list(name = c(“First Department of Medicine, Faculty of Medicine, University Medical Centre Mannheim, University of Heidelberg, Mannheim, Germany”, “German Center for Cardiovascular Research (DZHK), Partner Site Heidelberg-Mannheim, Mannheim, Germany”)),list(name = “Cardiology and Arrhythmology Clinic, Marche Polytechnic University, University Hospital, Umberto I–Lancisi–Salesi, Ancona, Italy”),list(name = “Servicio de Cardiología, Hospital Virgen de la Macarena, Sevilla, Spain”),list(name = “Unidad de Cuidados Intensivos Cardiológicos, Servicio de Cardiología, Hospital de Sant Pau, Instituto de Investigación Biomédica Sant Pau (IIB Sant Pau), Barcelona, Spain”) | NA | NA | NA | 27 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.2717 | 2019 | Medical research | NA | c(“fr”, “us”, “jp”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Optimal Combination of Compression Rate and Depth During Cardiopulmonary Resuscitation for Functionally Favorable Survival | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiovascular Division, University of Minnesota Medical School, Minneapolis.,Department of Medicine, The University of Texas Southwestern Medical Center, Dallas.,Department of Surgery, The University of Texas Southwestern Medical Center, Dallas.,Department of Pediatrics, The University of Texas Southwestern Medical Center, Dallas.,Department of Emergency Medicine, The University of Texas Southwestern Medical Center, Dallas.,Quality of Care Unit, University Hospital of Grenoble Alps, Grenoble, France.,Department of Emergency Medicine, University Hospital of Grenoble Alps, Grenoble, France.,Department of Pharmacology, Faculty of Medicine, Toho University, Tokyo, Japan. | 125678 | NA | NA | 8 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.3355 | 2019 | Medical research | NA | c(“nl”, “br”, “fr”, “us”, “gb”, “je”, “ch”, “pl”, “th”, “de”, “be”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Benefit and Risks of Aspirin in Addition to Ticagrelor in Acute Coronary Syndromes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Cardiology, Erasmus Medical Center, Erasmus University, Rotterdam, the Netherlands.,First Department of Cardiology, Medical University of Warsaw, Warsaw, Poland.,Amsterdam UMC, University of Amsterdam, Amsterdam, the Netherlands.,Division of Cardiology, Department of Internal Medicine, Faculty of Medicine, Prince of Songkla University, Songkhla, Thailand.,Department of Cardiology, Bern University Hospital, Inselspital, University of Bern, Bern, Switzerland.,French Alliance for Cardiovascular Trials, Université Paris Diderot, Hôpital Bichat, Assistance Publique Hôpitaux de Paris, and INSERM U-1148, Paris, France.,Department of Cardiology and Critical Care Medicine, Hartcentrum Hasselt, Jessa Ziekenhuis, Hasselt, Belgium.,National Heart and Lung Institute, Imperial College London, London, England. | 1231617181920 | NA | NA | 20 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.3788 | 2019 | Medical research | NA | c(“us”, “il”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Longitudinal Associations Between Income Changes and Incident Cardiovascular Disease | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiovascular Division, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Geisel School of Medicine at Dartmouth, Hanover, New Hampshire.,University of Kentucky College of Public Health, Lexington.,School of Health Professions, Sackler Faculty of Medicine, Tel Aviv University, Israel.,Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland. | 12378910 | NA | NA | 10 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.3805 | 2019 | Medical research | NA | c(“us”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | A Theoretical Framework for Clinical Implementation of Social Determinants of Health | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiovascular Division, Department of Medicine, Washington University School of Medicine in St Louis, St Louis, Missouri.,Center for Health Economics and Policy, Institute for Public Health at Washington University in St Louis, St Louis, Missouri. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.4025 | 2019 | Medical research | NA | c(“us”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Lipidomic Profiles With Progression of Carotid Artery Atherosclerosis in HIV Infection | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology and Population Health, Albert Einstein College of Medicine, Bronx, New York.,Broad Institute of MIT and Harvard, Cambridge, Massachusetts.,Public Health Sciences Division, Fred Hutchinson Cancer Research Center, Seattle, Washington.,Department of Nutrition, Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 12345161718 | NA | NA | 18 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.4101 | 2019 | Medical research | NA | c(“jp”, “nl”, “us”, “gb”, “fr”, “cn”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Time-Varying Outcomes With the Absorb Bioresorbable Vascular Scaffold During 5-Year Follow-up | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | The Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,The Cardiovascular Research Foundation, New York, New York.,Kyoto University Hospital, Kyoto, Japan.,Fu Wai Hospital, National Center for Cardiovascular Diseases, Chinese Academy of Medical Sciences, Beijing, China.,The Christ Hospital, Heart and Vascular Center, Lindner Research Center, Cincinnati, Ohio.,Columbia University Medical Center, New York, New York.,the Cardiovascular Research Foundation, New York, New York.,International Centre for Cardiovascular Health, Imperial College, London, England. | 12349101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.3662 | 2019 | Medical research | NA | c(“mx”, “es”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of the POT1 Germline Missense Variant p.I78T With Familial Melanoma | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Experimental Cancer Genetics, The Wellcome Trust Sanger Institute, Hinxton, England.,Laboratorio Internacional de Investigación sobre el Genoma Humano, Universidad Nacional Autónoma de México, Campus Juriquilla, Santiago de Querétaro, Qro, Mexico.,Departamento de Bioquímica y Biología Molecular, Instituto Universitario de Oncología del Principado de Asturias (IUOPA), Universidad de Oviedo, Oviedo, Spain.,Centro de Investigación en Red de Cáncer (CIBERONC), Madrid, Spain.,Department of Pathology, University of Michigan, Ann Arbor.,Department of Dermatology, University of Michigan, Ann Arbor. | 1232122232425 | NA | NA | 25 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.3789 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Use of Combination Systemic-Intratumoral HPV Vaccine to Treat Cutaneous Basaloid Squamous Cell Carcinomas | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Bichat Claude Bernard Hospital, AP-HP, Paris, France,Department of Pathology, Bichat Claude Bernard Hospital, AP-HP, Paris, France,INSERM UMR-1137, IAME, University of Paris Diderot, Sorbonne Paris Cité, Laboratoire de Virologie, Hôpital Bichat | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.4084 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Transient Palmoplantar Keratoderma With Clinical and Immunologic Characteristics of Bullous Pemphigoid | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Reims University Hospital, University of Reims Champagne-Ardenne, Reims, France.,Laboratory of Dermatology, Faculty of Medicine, EA 7509, University of Reims Champagne-Ardenne, Reims, France.,Department of Biological Sciences, Immunology, UFR Odontology, University of Reims Champagne-Ardenne, Reims, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2018.4219 | 2019 | Medical research | NA | c(“nl”, “gb”, “fr”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Nationwide Incidence of Metastatic Cutaneous Squamous Cell Carcinoma in England | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | National Cancer Registration and Analysis Service, Public Health England, Wellington House, London, United Kingdom.,International Prevention Research Institute, Lyon, France.,Department of Dermatology, Erasmus MC, University Medical Center, Rotterdam, the Netherlands.,London School of Hygiene and Tropical Medicine, London, United Kingdom.,Blizard Institute, Barts and The London School of Medicine and Dentistry, London, United Kingdom.,Department of Dermatology, School of Medicine, University of Dundee, Dundee, Scotland.,Barts and The London School of Medicine and Dentistry, London, United Kingdom. | 1234589101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.4378 | 2019 | Medical research | NA | c(“at”, “ar”, “il”, “tr”, “de”, “ch”, “au”, “fr”, “se”, “gr”, “ca”, “it”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Expert-Level Diagnosis of Nonpigmented Skin Cancer by Combined Convolutional Neural Networks | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | School of Computing Science, Simon Fraser University, Burnaby, British Columbia, Canada.,Vienna Dermatologic Imaging Research Group, Department of Dermatology, Medical University of Vienna, Vienna, Austria.,School of Medicine, The University of Queensland, Brisbane, Queensland, Australia.,School of Medicine, Tehran University of Medical Sciences, Tehran, Iran.,Department of Dermatology, Ankara University Faculty of Medicine, Ankara, Turkey.,Dermatology Research Centre, The University of Queensland, The University of Queensland Diamantina Institute, Brisbane, Australia.,Department of Dermatology, Centre Hospitalier Lyon Sud, Lyon 1 University, Lyons Cancer Research Center, Lyon, France.,Dermatology Clinic, Maggiore Hospital, University of Trieste, Trieste, Italy. | 1231920212223 | NA | NA | 23 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.5071 | 2019 | Medical research | NA | c(“es”, “gb”, “fr”, “it”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Assessment of Quality of Life and Treatment Outcomes of Patients With Persistent Postchemotherapy Alopecia | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Dermatology Service, Department of Medicine, Memorial Sloan Kettering Cancer Center, New York, New York.,Dermatology Service, Hospital Vithas Santa Catalina, Gran Canaria, Canary Islands, Spain.,Departments of Oncodermatology and Clinical Research, Institut Claudius Regaud, Institut Universitaire du Cancer, Toulouse Oncopole, France.,The Ronald O. Perelman Department of Dermatology, New York University School of Medicine, New York.,Department of Medicine, Memorial Sloan Kettering Cancer Center, New York, New York.,Department of Dermatology and Cutaneous Surgery, University of Miami Miller School of Medicine Miami, Florida.,Dermatology Research Centre, University of Manchester, National Institute for Health Research Manchester Biomedical Research Centre, Manchester, United Kingdom.,Department of Medicine, Weill Cornell Medical College, New York, New York. | 123411121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2018.5528 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Occurrence of Extensive Cutaneous Human Papillomavirus Infection After Initiation of Tofacitinib Therapy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Bichat Claude Bernard Hospital, AP-HP, Paris, France.,INSERM UMR-1137, IAME, University of Paris Diderot, Sorbonne Paris Cité, Laboratoire de Virologie, Hôpital Bichat.,Department of Gastroenterology, Beaujon Hospital, AP-HP, Paris France.,Department of Pathology, Bichat Claude Bernard Hospital, AP-HP, Paris, France.,INSERM UMR-1160, Institut Universitaire d’Hématologie, University of Paris Diderot, Sorbonne Paris Cité. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2019.0114 | 2019 | Medical research | NA | c(“nl”, “fr”, “be”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of PDGFRB Mutations With Pediatric Myofibroma and Myofibromatosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Experimental Medicine Unit, de Duve Institute, Université Catholique de Louvain, Brussels, Belgium.,Department of Pathology, Princess Maxima Centre for Pediatric Oncology and University Medical Centre, Utrecht, Netherlands.,Department of Pathology, Hôpital Necker-Enfants Malades, Assistance Publique-Hôpitaux de Paris, Paris, France.,Department of Pathology, Institut de Pathologie et de Génétique, Gosselies, Belgium.,Department of Pediatric Hematology and Oncology, Cliniques Universitaires Saint-Luc, Université catholique de Louvain, Brussels, Belgium.,Human Molecular Genetics, de Duve Institute, Université Catholique de Louvain, Brussels, Belgium.,Walloon Excellence in Lifesciences and Biotechnology, Wallonia, Belgium.,Genetics of Autoimmune Disease and Cancer, de Duve Institute, Université catholique de Louvain, Brussels, Belgium. | 123459101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.0381 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Localization, Morphologic Features, and Chemical Composition of Calciphylaxis-Related Skin Deposits in Patients With Calcific Uremic Arteriolopathy | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02291277 | 1 | NA | NA | 4 | subscription | NA | Service Plaies et Cicatrisation, Sorbonne Université, Hôpital Rothschild, Paris, France.,Institut National de la Santé et de la Recherche Médicale (INSERM), Unité Mixte de Recherche (UMR) S 1155, Paris, France.,Anatomie et Cytologie Pathologiques, Sorbonne Université, Hôpital Tenon, Paris, France.,Centre National de la Recherche Scientifique (CNRS), Laboratoire de Chimie Physique, Ba340, Université Paris XI, Orsay, France.,Service de Dermatologie, Centre Hospitalier Universitaire de Rouen, Rouen, France.,Centre Hospitalier Universitaire de Rouen, Anatomie et Cytologie Pathologiques, Rouen, France.,Service de Dermatologie, Sorbonne Université, Hôpital Tenon, Paris, France. | 12341718192021 | NA | NA | 21 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2019.0425 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association of Time From Primary Diagnosis to First Distant Relapse of Metastatic Melanoma With Progression of Disease and Survival | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Hôpital St Louis, Paris, France.,Department of Biostatistics, Hôpital Hôtel Dieu, Paris, France.,Department of Dermatology, CHRU Lille, Lille, France.,Department of Dermatology, Hôpital des Hospices Civils de Lyon, Lyon, France.,Department of Dermatology, CHU de Bordeaux St-André, Bordeaux, France.,Department of Dermatology, CHU de Nantes, Nantes, France. | 123452021222324 | NA | NA | 24 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamadermatol.2019.1735 | 2019 | Medical research | NA | c(“fr”, “at”, “gr”, “de”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Association Between Surgical Skin Markings in Dermoscopic Images and Diagnostic Performance of a Deep Learning Convolutional Neural Network for Melanoma Recognition | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University of Heidelberg, Heidelberg, Germany.,Department of Dermatology and Venerology, Medical University of Graz, Graz, Austria.,Department of Dermatology, Lyon Sud University Hospital, Hospices Civils de Lyon, Pierre Bénite, France.,First Department of Dermatology, Aristotle University of Thessaloniki, Thessaloniki, Greece.,Public, Private, and Teaching Practice, Konstanz, Germany.,Department of Dermatology, Allergology and Environmental Medicine II, Klinik Thalkirchnerstraße, Munich, Germany. | 123457891011 | NA | NA | 11 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.2613 | 2019 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Development or Exacerbation of Head and Neck Dermatitis in Patients Treated for Atopic Dermatitis With Dupilumab | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Dermatologie et d’Allergologie, Hôpital Tenon, Paris HUEP, APHP, Paris, France.,Sorbonne Universités, Paris, Centre d’Immunologie et des Maladies Infectieuses-Paris (Cimi-Paris), INSERM U1135, Paris, France.,Service de Dermatologie, Centre Hospitalier Universitaire de Montpellier, Montpellier, France.,Service de Dermatologie, Hôpital Saint André, Centre de Référence des Maladies Rares de la Peau, Centre Hospitalier Universitaire de Bordeaux, Bordeaux, France.,Service de Dermatologie, Hôpital Saint-Louis, Paris, France.,Centre Hospitalier Universitaire de Lille, Service de Dermatologie et Vénérologie, F-59000 Lille, France.,University of Lille, INSERM U995-LIRIC-Lille Inflammation Research International Center, F-59000 Lille, France.,Centre Hospitalier Universitaire de Nantes, Service de Dermatologie, Nantes, France. | 1234567 | NA | NA | 7 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.5406 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of Long-term Exercise Training With Risk of Falls, Fractures, Hospitalizations, and Mortality in Older Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Gerontopole of Toulouse, Institute of Ageing, Toulouse University Hospital (CHU Toulouse), Toulouse, France.,UPS/Inserm UMR1027, University of Toulouse III, Toulouse, France. | 1234 | NA | NA | 4 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.7169 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Self-compression Technique vs Standard Compression in Mammography | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Radiology, Institut de Cancérologie de Lorraine Alexis Vautrin, Vandœuvre-lès-Nancy, France.,Department of Radiology, Institut Bergonié, Bordeaux, France.,Department of Radiology, Centre François Baclesse, Caen, France.,Centre de Radiologie, Nancy, France.,Department of Radiology, Institut Curie, Paris, France.,Centre d’Imagerie Majorelle, Nancy, France. | 123451011121314 | NA | NA | 14 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.7289 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association Between Ultraprocessed Food Consumption and Risk of Mortality Among Middle-aged Adults in France | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Paris 13, Equipe de Recherche en Epidémiologie Nutritionnelle, Centre de Recherche Epidémiologie et Statistique, Sorbonne Paris Cité, Bobigny, France.,Département de Santé Publique, Hôpital Avicenne (AP-HP), Bobigny, France. | 1234678 | NA | NA | 8 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2018.7977 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Delivery of Bottled Water to Women With Recurrent Urinary Tract Infections: Why in Bulgaria?—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | University of Miami Miller School of Medicine, Miami, Florida,Danone Nutricia Research, Palaiseau, France,Department of Urology, University of Texas Southwestern Medical Center, Dallas | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.0223 | 2019 | Medical research | NA | c(“fr”, “br”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Diagnostic Performance of Creatinine-Based Equations for Estimating Glomerular Filtration Rate in Adults 65 Years and Older | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Service de Néphrologie, Dialyse, Hypertension et Exploration Fonctionnelle Rénale, Hôpital Edouard Herriot, Hospices Civils de Lyon, Lyon, France.,Programa de Pós-graduação em Ciências da Saúde Universidade de Caxias do Sul, Caxias do Sul, Brazil.,CAPES Foundation, Ministry of Education of Brazil, Brasilia.,Núcleo de Apoio à Pesquisa-COEDI, Hospital Geral de Caxias do Sul, Caxias do Sul, Brasil.,Laboratoire CarMeN, Institution National de la Santé et de la Recherche Médicale 1060Université Lyon 1, Lyon, France.,Université Claude Bernard Lyon 1, Lyon, France.,Laboratoire de Biologie Tissulaire et Ingénierie Thérapeutique (UMR 5305 CNRS/Université Claude Bernard, Lyon 1), Lyon, France. | 1256 | NA | NA | 6 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.0540 | 2019 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Comparison of Scheduled vs Emergency-Only Dialysis in Undocumented Immigrants With End-stage Renal Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = “Centre de Néphrologie et Transplantation Rénale, Assistance Publique Hôpitaux de Marseille, Hôpital de la Conception, Marseille, France”),list(name = “Service Epidémiologie et économie de la santé, Assistance Publique Hôpitaux de Marseille, Marseille, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.0899 | 2019 | Medical research | NA | c(“jp”, “us”, “fr”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association of Step Volume and Intensity With All-Cause Mortality in Older Women | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of Preventive Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Laboratory of Epidemiology and Population Science, National Institute on Aging, Baltimore, Maryland.,Department of Health and Social Behavior, School of Public Health, Graduate School of Medicine, The University of Tokyo, Tokyo, Japan.,Department of Kinesiology, Recreation, and Sport Studies, University of Tennessee, Knoxville.,Metabolic Epidemiology Branch, Division of Cancer Epidemiology and Genetics, National Cancer Institute, Bethesda, Maryland. | 123456 | NA | NA | 6 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.1005 | 2019 | Medical research | NA | c(“fr”, “us”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Assessment of Strategies for Managing Expansion of Diagnosis Coding Using Risk-Adjustment Methods for Medicare Data | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of General Internal Medicine and Health Services Research, David Geffen School of Medicine, UCLA (University of California, Los Angeles).,Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts.,Department of Health Policy, London School of Economics and Political Science, London, England.,Department of Biostatistics, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Veterans Affairs Healthcare System, Boston, Massachusetts. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.1047 | 2019 | Medical research | NA | c(“us”, “fr”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Prescription Patterns of Family Members After Discontinued Opioid or Benzodiazepine Therapy of Users | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Division of General Internal Medicine and Primary Care, Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts.,Department of Medicine, Massachusetts General Hospital, Boston, Massachusetts.,National Bureau of Economic Research, Cambridge, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.1218 | 2019 | Medical research | NA | c(“gb”, “fr”, “us”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | All-Cause and Cause-Specific Mortality Among Major League Baseball Players | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Environmental Health, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Physical Medicine and Rehabilitation, Spaulding Rehabilitation Hospital, Massachusetts General Hospital, Brigham and Women’s Hospital, and Harvard Medical School, Boston.,Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Sean M. Healey & AMG Center for ALS at Massachusetts General Hospital, Boston. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.1445 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Limitations in the Methodology Assessing Subjective Data With Lack of Blinding in Mammography Screening—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Radiology, Institut de Cancérologie de Lorraine Alexis Vautrin, Vandœuvre-lés-Nancy, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.1483 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association Between Electronic Cigarette Use and Smoking Reduction in France | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02340247 | 1 | NA | NA | 4 | hybrid | NA | Inserm, Institut Pierre Louis d’Epidémiologie et de Santé Publique, Sorbonne Université, Paris, France.,Inserm, Unité Mixte de Service 011, Population-based Epidemiological Cohorts, Villejuif, France.,Université Paris Descartes, Sorbonne Paris Cité, Faculté de Médecine, Paris, France.,BioStatistique, Traitement et Modélisation des données biologiques-Équipe d’Accueil 7537, Faculté de Pharmacie de Paris, Université Paris Descartes, Paris 75006. | 1234678910 | NA | NA | 10 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.2195 | 2019 | Medical research | NA | c(“fr”, “us”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association Between Plant-Based Dietary Patterns and Risk of Type 2 Diabetes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Nutrition, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Epidemiology, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Channing Division of Network Medicine, Department of Medicine, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.2208 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Evidence for the Full Potential of Daily Food Choices to Minimize Premature Mortality—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Université Paris 13, Equipe de Recherche en Epidémiologie Nutritionnelle, Centre de Recherche Epidémiologie et Statistique, Sorbonne Paris Cité, Bobigny, France,Département de Santé Publique, Hôpital Avicenne (AP-HP), Bobigny, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.2322 | 2019 | Medical research | NA | fr | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Disparities in Acceptance of Deceased Donor Kidneys Between the United States and France and Estimated Effects of Increased US Acceptance | 1 | 4485.87 | openAPC | NA | NA | 4485.87 | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Paris Translational Research Center for Organ Transplantation, INSERM, UMR-S970, Paris, France.,Department of Kidney Transplantation, Necker Hospital, Assistance Publique - Hôpitaux de Paris, Paris, France.,Department of Medicine, Renal-Electrolyte and Hypertension Division, University of Pennsylvania, Philadelphia.,Center for Clinical Epidemiology and Biostatistics, Perelman School of Medicine, University of Pennsylvania, Philadelphia.,Department of Nephrology and Kidney Transplantation, Saint-Louis Hospital, Assistance Publique - Hôpitaux de Paris, Paris, France.,Agence de la Biomédecine, Saint Denis la Plaine, France.,INSERM U1018, CESP, Université Paris Sud, Villejuif, France. | 12111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “hybrid”) | hybrid | cc-by | 1 | 0 | NA | hybrid | hybrid | 1 | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.2478 | 2019 | Medical research | NA | c(“es”, “ie”, “nl”, “gr”, “no”, “it”, “dk”, “gb”, “my”, “fr”, “se”, “de”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association Between Soft Drink Consumption and Mortality in 10 European Countries | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | School of Public Health, Physiotherapy and Sports Science, University College Dublin, Dublin, Ireland.,School of Agriculture and Food Science, University College Dublin, Dublin, Ireland.,Section of Nutrition and Metabolism, International Agency for Research on Cancer, Lyon, France.,Instituto de Investigación Sanitaria Illes Balears (IdISBa), University Hospital of Son Espases, Palma de Mallorca, Spain.,CIBER Fisiopatología de la Obesidad y Nutrición (CIBEROBN), Madrid, Spain.,Department of Epidemiology and Biostatistics, School of Public Health, Imperial College London, London, United Kingdom. | 124647484950 | NA | NA | 50 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamainternmed.2019.3066 | 2019 | Medical research | NA | NA | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Association Between Data Sources and US Food and Drug Administration Drug Safety Communications | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | list(name = c(“Department of Diagnostic Imaging, Sheba Medical Center, Ramat Gan, Israel”, “Sackler School of Medicine, Tel-Aviv University, Tel Aviv, Israel”)),list(name = “Statistics Consulting Unit, Rabin Medical Center, Beilinson Campus, Petah Tikva, Israel”),list(name = c(“Sackler School of Medicine, Tel-Aviv University, Tel Aviv, Israel”, “Medicine A, Beilinson Hospital, Rabin Medical Center, Petah Tikva, Israel”)),list(name = “Oncology Department, Hospital de la Santa Creu i Sant Pau, Institut d’Investigació Biomèdica Sant Pau, and Universitat Autònoma de Barcelona, Barcelona, Spain”),list(name = “Princess Margaret Cancer Centre, Division of Medical Oncology, University of Toronto, Toronto, Ontario, Canada”) | NA | NA | NA | 6 | 1 | 0 | 0 | 0 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamainternmed.2019.3177 | 2019 | Medical research | NA | c(“il”, “fr”, “us”, “gb”) | 2168-6106 | 2168-6106 | JAMA Internal Medicine | en | Trends in Hospitalization vs Observation Stay for Ambulatory Care–Sensitive Conditions | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | hybrid | NA | Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Division of General Internal Medicine, Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Medicine, Harvard Medical School, Boston, Massachusetts.,Harvard Global Health Institute, Harvard University, Cambridge, Massachusetts. | 1245 | NA | NA | 5 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
import_manips(2020)
Temps d’exécution de l’import des données : 1.84 secs.
Dimensions du jeu de données : 141581 observations et 52 variables (1 ligne = 1 article).
Les 100 premières observations :
n_100_kable(data)
| doi | year | bso_classification | coi | detected_countries | journal_issn_l | journal_issns | journal_name | lang | title | has_apc | amount_apc_EUR | apc_source | amount_apc_doaj_EUR | amount_apc_doaj | amount_apc_openapc_EUR | count_apc_openapc_key | publisher_group | publisher_dissemination | hal_id | is_covered_by_couperin | part_APC_paid_by_couperin | part_APC_paid_by_authors | tier | journal_color | journal_color_doaj | name | author_position | corresponding | nb_authors | is_complete_affiliation | nb_missing_affiliation | is_french_CA | is_at_least_one_french_author2 | oa_details.2020.is_oa | oa_details.2020.journal_is_in_doaj | oa_details.2020.journal_is_oa | oa_details.2020.oa_host_type | oa_details.2020.oa_colors | oa_details.2020.oa_colors_with_priority_to_publisher | oa_details.2020.licence_publisher | is_french_CA_wos | is_non_french_CA_wos | is_french_CA_openalex | oa_color_article_BSO | oa_color_openalex | apc_has_been_paid | journal_color_qoam | is_french_CA_bso_wos | is_french_CA_bso_wos_lang | is_french_CA_bso_wos_lang_openalex | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 10.1001/amajethics.2020.639 | 2020 | Medical research | NA | NA | 2376-6980 | 2376-6980 | AMA Journal of Ethics | en | Response to “How Should Global Tobacco Control Efforts Be Prioritized to Protect Children in Resource-Poor Regions?” A Deliberate Public Policy Plus Naivety at Best | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | TRUE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/amajethics.2020.767 | 2020 | Medical research | NA | NA | 2376-6980 | 2376-6980 | AMA Journal of Ethics | en | Is It Justifiable to Make Self-Determination Illusory to Motivate a Specific Health Outcome? | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | TRUE | publisher | other | other | no license | NA | NA | 0 | subscription | NA | NA | NA | NA | NA | 0 |
| 10.1001/amajethics.2020.837 | 2020 | Medical research | NA | fr | 2376-6980 | 2376-6980 | AMA Journal of Ethics | en | How Should Allopathic Physicians Respond to Native American Patients Hesitant About Allopathic Medicine? | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 0 | NA | NA | 4 | NA | NA | Graduate student in public health at the Harvard T. H. Chan School of Public Health in Boston.,Clinical associate professor at the University of Arizona College of Nursing in Tucson. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.13558 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13569 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13580 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13587 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Renaudot and the First French Newspaper and Medical Journal | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13591 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13602 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13613 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13624 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13635 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13646 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13657 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13668 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13679 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13690 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13697 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | es | Editorial | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13701 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.13712 | 2020 | Humanities | NA | NA | 0098-7484 | 0098-7484 | JAMA | NA | JAMA | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2019.18587 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Intravenous Ondansetron in Pregnancy and Risk of Congenital Malformations | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Pharmacoepidemiology and Pharmacoeconomics, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Division of Maternal-Fetal Medicine, Brigham and Women’s Hospital, Boston, Massachusetts. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.20079 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Powder Use in the Genital Area With Risk of Ovarian Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Epidemiology Branch, National Institute of Environmental Health Sciences, Research Triangle Park, North Carolina.,Department of Cancer Epidemiology, H. Lee Moffitt Cancer Center and Research Institute, Tampa, Florida.,Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Program in Epidemiology, Division of Public Health Sciences, Fred Hutchinson Cancer Research Center, Seattle, Washington.,Department of Epidemiology, School of Public Health, University of Washington, Seattle.,Metabolic Epidemiology Branch, Division of Cancer Epidemiology and Genetics, National Cancer Institute, Rockville, Maryland.,Department of Obstetrics and Gynecology, University of Florida College of Medicine-Jacksonville.,Social and Scientific Systems, Inc, Durham, North Carolina.,Clinical Genetics Branch, Division of Cancer Epidemiology and Genetics, National Cancer Institute, Rockville, Maryland. | 123678910 | NA | NA | 10 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.20207 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Behavioral Intervention to Increase Vegetable Consumption on Cancer Progression Among Men With Early-Stage Prostate Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Urology, UC San Diego Moores Comprehensive Cancer Center and VA San Diego Healthcare System, La Jolla, California.,Alliance Statistics and Data Center, Mayo Clinic, Rochester, Minnesota.,Department of Urology, Roswell Park Comprehensive Cancer Center, Buffalo, New York.,Comprehensive Cancer Center, Department of Medicine, The Ohio State University College of Medicine, Columbus.,Department of Pathology, University of California, San Diego, La Jolla.,Siteman Cancer Center, Department of Radiation Oncology, Washington University, St Peters, Missouri.,UCSF Helen Diller Family Comprehensive Cancer Center, San Francisco, California.,Memorial Sloan Kettering Cancer Center, New York, New York.,Moores Cancer Center, Department of Family Medicine and Public Health, University of California, San Diego, La Jolla.,Department of Prevention and Population Sciences, Roswell Park Comprehensive Cancer Center, Buffalo, New York. | 123451617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.20675 | 2020 | Medical research | NA | c(“je”, “ge”, “us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Patient-Reported Outcomes Through 5 Years for Active Surveillance, Surgery, Brachytherapy, or External Beam Radiation With or Without Androgen Deprivation Therapy for Localized Prostate Cancer | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Radiation Oncology, The University of Texas MD Anderson Center, Houston.,Department of Urology, Vanderbilt University Medical Center, Nashville, Tennessee.,Department of Biostatistics, Vanderbilt University Medical Center, Nashville, Tennessee.,Office of Patient and Community Education, Patient Advocacy Program, Vanderbilt Ingram Cancer Center, Vanderbilt University Medical Center, Nashville, Tennessee.,Department of Urology, University of Utah Health, Salt Lake City.,Department of Medicine, University of California Irvine, Irvine. | 123451617181920 | NA | NA | 20 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.20833 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Hydroxyethyl Starch vs Saline for Volume Replacement Therapy on Death or Postoperative Complications Among High-Risk Patients Undergoing Major Abdominal Surgery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02448451 | 1 | NA | NA | 4 | subscription | NA | Centre Hospitalier Universitaire (CHU) Clermont-Ferrand, Département Anesthésie et Réanimation, Hôpital Estaing, Université Clermont Auvergne, CNRS, Inserm U-1103, Clermont-Ferrand, France.,CHU de Lille, Pôle Anesthésie Réanimation, Hôpital Claude Huriez, Lille, France.,CHU de Clermont-Ferrand, Département Anesthésie et Réanimation, Hôpital Estaing, Clermont-Ferrand, France.,CHU de Bordeaux, Département Anesthésie et Réanimation, Hôpital Pellegrin, Bordeaux, France.,CHU Montpellier, Département Anesthésie et Réanimation B (DAR B), Hôpital Saint-Eloi, and Inserm U-1046, Montpellier, France. | 123458485868788 | NA | NA | 88 | 0 | 62 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.20866 | 2020 | Medical research | NA | c(“ca”, “fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Challenges to the Reproducibility of Machine Learning Models in Health Care | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts.,Computational Health Informatics Program, Boston Children’s Hospital, Boston, Massachusetts.,Department of Computer Science, University of Toronto, Toronto, Ontario, Canada.,Vector Institute, Toronto, Ontario, Canada. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.21377 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Recurrent Urinary Tract Infections in Adult Women | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Infectious Diseases and Global Public Health, Department of Medicine, University of California, San Diego, La Jolla.,Department of Urology, University of California, San Diego, La Jolla.,Division of Female Pelvic Medicine and Reconstructive Surgery, Department of Obstetrics, Gynecology and Reproductive Sciences, University of California, San Diego, La Jolla.,Associate Editor. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.21954 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Strategies to Avoid Extubation Failure Among ICU Patients—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Centre Hospitalier Universitaire de Poitiers, Médecine Intensive Réanimation, Poitiers, France,INSERM CIC 1402, ALIVE Research Group, Poitiers, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2019.22176 | 2020 | Medical research | NA | c(“nz”, “ch”, “au”, “th”, “fr”, “jp”, “br”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Vitamin C, Hydrocortisone, and Thiamine vs Hydrocortisone Alone on Time Alive and Free of Vasopressor Support Among Patients With Septic Shock | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Australian and New Zealand Intensive Care Research Centre, Department of Epidemiology and Preventive Medicine, Monash University, Melbourne, Victoria, Australia.,Department of Health Promotion and Human Behavior, Kyoto University Graduate School of Medicine, Kyoto, Japan.,Institute of Social and Preventive Medicine, University of Bern, Bern, Switzerland.,Intensive Care Unit, Wellington Hospital, Capital and Coast District Health Board, Wellington, New Zealand.,University of Melbourne, Parkville, Victoria, Australia.,Intensive Care Unit, Austin Hospital, Heidelberg, Victoria, Australia. | 123282930 | NA | NA | 30 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.22370 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | The Need to Incorporate Additional Patient Information Into Risk Adjustment for Medicare Beneficiaries | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Management and Policy, Saint Louis University College for Public Health and Social Justice, St Louis, Missouri.,Department of Internal Medicine, University of Michigan Medical School, Ann Arbor, Michigan.,Cardiovascular Division, Washington University School of Medicine in St Louis, St Louis, Missouri.,Associate Editor. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2019.22525 | 2020 | Medical research | NA | c(“es”, “it”, “be”, “de”, “fr”, “gb”, “fi”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Intravenous Interferon β-1a on Death and Days Free From Mechanical Ventilation Among Patients With Moderate to Severe Acute Respiratory Distress Syndrome | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Alma Mater Studiorum-Università di Bologna, Dipartimento di Scienze Mediche e Chirurgiche, Anesthesia and Intensive Care Medicine, Policlinico di Sant’Orsola, Bologna, Italy.,Division of Intensive Care, Department of Anesthesiology, Intensive Care, and Pain Medicine, University of Helsinki and Helsinki University Hospital, Helsinki, Finland.,Faron Pharmaceuticals Ltd, Turku, Finland.,Manchester University NHS Foundation Trust, Wythenshawe Hospital, Manchester, United Kingdom.,Medicity research Laboratory, University of Turku, Turku, Finland.,Critical Care, University College London Hospitals, NHS Foundation Trust and National Institute for Health Research Biomedical Research Centre at University College London Hospitals NHS Foundation Trust and University College London, London, United Kingdom. | 123452223242526 | NA | NA | 26 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.1021 | 2020 | Medical research | NA | c(“il”, “fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Mortality and Hospitalizations for Dually Enrolled and Nondually Enrolled Medicare Beneficiaries Aged 65 Years or Older, 2004 to 2017 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Richard A. and Susan F. Smith Center for Outcomes Research in Cardiology, Division of Cardiology, Beth Israel Deaconess Medical Center, Harvard Medical School, Harvard University, Boston, Massachusetts.,Department of Biostatistics, T. H. Chan School of Public Health, Harvard University, Boston, Massachusetts.,Department of Health Policy and Management, T. H. Chan School of Public Health, Harvard University, Boston, Massachusetts.,Department of Medicine, Brigham and Women’s Hospital, Harvard Medical School, Harvard University, Boston, Massachusetts.,Center for Health Economics and Policy, Institute for Public Health and Cardiovascular Division, School of Medicine, Washington University in St Louis, St Louis, Missouri. | 123456 | NA | NA | 6 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.10224 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Long-term Vitamin D3 Supplementation vs Placebo on Risk of Depression or Clinically Relevant Depressive Symptoms and on Change in Mood Scores | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Psychiatry, Massachusetts General Hospital and Harvard Medical School, Boston.,Channing Division of Network Medicine, Department of Medicine, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts.,Department of Epidemiology, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Psychiatry, UPMC and University of Pittsburgh School of Medicine, Pittsburgh, Pennsylvania.,Division of Preventive Medicine, Department of Medicine, Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 1231213 | NA | NA | 13 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.10553 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Medicaid and COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | School of Social Work, Columbia University, New York, New York.,Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Harvard Medical School, Harvard University, Boston, Massachusetts. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.11642 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Mortality, Admissions, and Patient Census at SNFs in 3 US Cities During the COVID-19 Pandemic | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,CarePort Health Inc, Boston, Massachusetts.,Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts. | 1234 | NA | NA | 4 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.12187 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Challenges Estimating Total Lives Lost in COVID-19 Decisions | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard T.H. Chan School of Public Health, Boston, Massachusetts. | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.12209 | 2020 | Medical research | NA | c(“ge”, “fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Prescribing Paid Sick Leave—An Important Tool for Primary Care During the Pandemic | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Harvard Medical School, Harvard University, Boston, Massachusetts.,Alston & Bird LLP, Atlanta, Georgia. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.1267 | 2020 | Medical research | NA | c(“fr”, “no”) | 0098-7484 | 0098-7484 | JAMA | en | Why Test for Proportional Hazards? | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Biostatistics, Oslo Centre for Biostatistics and Epidemiology, University of Oslo, Oslo, Norway.,Department of Biostatistics, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Harvard-MIT Division of Health Sciences and Technology, Boston, Massachusetts. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.13136 | 2020 | Medical research | NA | c(“fr”, “us”, “ge”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Clinician Health System Affiliation With Outpatient Performance Ratings in the Medicare Merit-based Incentive Payment System | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Management and Policy, College for Public Health and Social Justice, St Louis University, St Louis, Missouri.,Department of Health and Clinical Outcomes Research, St Louis University, St Louis, Missouri.,Department of Health Policy and Management, Rollins School of Public Health, Emory University, Atlanta, Georgia.,Department of Health Policy and Management, T. H. Chan School of Public Health, Harvard University, Boston, Massachusetts.,Cardiovascular Division, School of Medicine, Washington University in St Louis, St Louis, Missouri. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.1372 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Measles as Metaphor—What Resurgence Means for the Future of Immunization | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Harvard Kennedy School, Cambridge, Massachusetts.,Sabin Vaccine Institute, Washington, DC. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.1461 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Paralytic Agents for Intubation in the Out-of-Hospital Setting—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Emergency, CHU de la Réunion, Réunion, France”) | NA | NA | NA | 2 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.14709 | 2020 | Medical research | NA | c(“il”, “fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Nursing Home Ratings on Health Inspections, Quality of Care, and Nurse Staffing With COVID-19 Cases | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Richard A. and Susan F. Smith Center for Outcomes Research, Beth Israel Deaconess Medical Center, Boston, Massachusetts.,Department of Social and Health Policy, London School of Economics, London, United Kingdom. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.14804 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Aspirin Protects Against Colorectal Cancer in Lynch Syndrome | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2020.16244 | 2020 | Medical research | NA | c(“sz”, “ch”, “us”, “ca”, “bw”, “za”, “fr”, “ir”, “bt”, “gb”, “ke”, “ge”, “bj”, “tl”, “de”) | 0098-7484 | 0098-7484 | JAMA | en | Lifetime Prevalence of Cervical Cancer Screening in 55 Low- and Middle-Income Countries | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Heidelberg Institute of Global Health (HIGH), Medical Faculty and University Hospital, University of Heidelberg, Heidelberg, Germany.,Department of Applied Tumor Biology, Institute of Pathology, Heidelberg University Hospital, Heidelberg, Germany.,Chinese Academy of Medical Sciences & Peking Union Medical College, Beijing.,Department of Global Health and Population at the Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Africa Health Research Institute, Somkhele, South Africa.,Division of Primary Care and Population Health, Department of Medicine, Stanford University, Stanford, California. | 12342425 | NA | NA | 25 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.16349 | 2020 | Medical research | NA | c(“nl”, “es”, “sg”, “cn”, “fr”, “us”, “gb”, “it”, “ch”, “tw”, “kr”, “de”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Remdesivir vs Standard Care on Clinical Status at 11 Days in Patients With Moderate COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Technical University of Munich, School of Medicine, University Hospital Rechts der Isar, Munich, Germany.,Baylor University Medical Center, Dallas, Texas.,Lewis Katz School of Medicine at Temple University, Philadelphia, Pennsylvania.,Instituto de Investigación Hospital Universitario La Paz, Madrid, Spain.,Azienda Ospedaliera di Padova, Padova, Italy.,Seoul Medical Center, Seoul, South Korea.,Virginia Commonwealth University, Richmond.,Cook County Health, Chicago, Illinois.,Brigham and Women’s Hospital and Harvard Medical School, Boston, Massachusetts. | 123452728293031 | NA | NA | 31 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.16761 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Effect of Hydrocortisone on 21-Day Mortality or Respiratory Support Among Critically Ill Patients With COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Médecine Intensive-Réanimation, CHU de Tours, Tours, France.,INSERM U1100, Centre d’Etude des Pathologies Respiratoires, Université de Tours, Tours, France.,INSERM CIC1415, CHU de Tours, Tours, France.,Médecine Intensive Réanimation, Hôpital Raymond Poincaré (GHU APHP Université Paris Saclay), Garches, France, and RHU RECORDS and FHU SEPSIS.,INSERM U1173, Université de Versailles SQY-Université Paris Saclay, Garches, France.,Université de Tours, Université de Nantes, INSERM, SPHERE U1246, Tours, France. | 1220212223 | NA | NA | 23 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.16909 | 2020 | Medical research | NA | c(“pt”, “ch”, “au”, “fr”, “gb”, “at”, “de”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Vitamin D Supplementation, Omega-3 Fatty Acid Supplementation, or a Strength-Training Exercise Program on Clinical Outcomes in Older Adults | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Center on Aging and Mobility, University Hospital Zurich, City Hospital Waid & Triemli and University of Zurich, Zurich, Switzerland.,Department of Geriatric Medicine and Aging Research, University Hospital Zurich and University of Zurich, Zurich, Switzerland.,University Clinic for Acute Geriatric Care, City Hospital Waid & Triemli, Zurich, Switzerland.,Gérontopôle de Toulouse, Institut du Vieillissement, Center Hospitalo-Universitaire de Toulouse, Toulouse, France.,UMR INSERM 1027, University of Toulouse III, Toulouse, France.,Center for Metabolic Diseases, University of Sheffield Medical School, Sheffield, England.,Mary MacKillop Institute for Health Research, Australian Catholic University, Melbourne, Victoria, Australia.,Department of Biostatistics, Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 1221222324 | NA | NA | 24 | 0 | 1 | NA | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17020 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between African American Race and Clinical Outcomes in Men Treated for Low-Risk Prostate Cancer With Active Surveillance | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | VHA San Diego Health Care System, La Jolla, California.,Department of Radiation Medicine and Applied Sciences, University of California San Diego School of Medicine, La Jolla.,Department of Urology, University of California San Diego School of Medicine, La Jolla.,Department of Family Medicine and Public Health, University of California San Diego School of Medicine, La Jolla. | 123121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17022 | 2020 | Medical research | NA | c(“nz”, “au”, “be”, “th”, “fr”, “gb”, “lk”, “nl”, “ie”, “de”, “us”, “sa”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Hydrocortisone on Mortality and Organ Support in Patients With Severe COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | The Clinical Research Investigation and Systems Modeling of Acute Illness (CRISMA) Center, Department of Critical Care Medicine, University of Pittsburgh School of Medicine, Pittsburgh, Pennsylvania.,The UPMC Health System Office of Healthcare Innovation, Pittsburgh, Pennsylvania.,Julius Center for Health Sciences and Primary Care, University Medical Center Utrecht, Utrecht, the Netherlands.,Intensive Care Center, University Medical Center Utrecht, Utrecht, the Netherlands.,Division of Anaesthetics, Pain Medicine and Intensive Care Medicine, Department of Surgery and Cancer, Imperial College London and Imperial College Healthcare NHS Trust, London, United Kingdom. | 1.23106110621063e+22 | NA | NA | 1065 | 0 | 1009 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17023 | 2020 | Medical research | NA | c(“nz”, “ch”, “au”, “fr”, “gb”, “es”, “dk”, “cn”, “us”, “br”, “ca”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between Administration of Systemic Corticosteroids and Mortality Among Critically Ill Patients With COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Population Health Sciences, Bristol Medical School, University of Bristol, Bristol, England.,NIHR Bristol Biomedical Research Centre, Bristol, England.,Department of Pediatrics, University of British Columbia, Vancouver, Canada.,Clinical Unit, Health Emergencies Programme, World Health Organization, Geneva, Switzerland.,Applied Health Research Centre, Li Ka Shing Knowledge Institute of St Michael’s Hospital, Department of Medicine, University of Toronto, Toronto, Ontario, Canada.,BP-A Beneficência Portuguesa de São Paulo, São Paulo, Brazil.,Australian and New Zealand Intensive Care Research Centre, School of Epidemiology and Preventive Medicine, Monash University, Melbourne, Australia.,St John of God Healthcare, Subiaco, Australia.,Li Ka Shing Knowledge Institute, St Michael’s Hospital, University of Toronto, Toronto, Ontario, Canada. | 23453738391 | NA | NA | 39 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17025 | 2020 | Medical research | NA | c(“ch”, “de”, “us”, “au”, “ge”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Antiretroviral Drugs for Treatment and Prevention of HIV Infection in Adults | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | University of Alabama at Birmingham.,Harvard Medical School and Massachusetts General Hospital, Boston.,Monash University and Alfred Hospital, Melbourne, Australia.,University of California, Los Angeles.,AIDS Research Consortium of Atlanta, Atlanta, Georgia.,University Hospital Cologne, Cologne, Germany.,University Hospital Zurich and Institute of Medical Virology, University of Zurich, Zurich, Switzerland.,University of Paris and Saint-Louis/Lariboisière Hospitals, APHP, Paris, France.,International Antiviral Society-USA, San Francisco, California.,University of California, San Francisco. | 123451213141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.1707 | 2020 | Medical research | NA | c(“jp”, “be”, “us”, “ca”, “fr”, “hu”, “gb”, “tw”, “es”, “ru”, “kr”, “dk”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of Doxorubicin Plus Olaratumab vs Doxorubicin Plus Placebo on Survival in Patients With Advanced Soft Tissue Sarcomas | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, Memorial Sloan Kettering Cancer Center, New York, New York.,Department of Medicine, Weill Cornell Medical College, New York, New York.,Dana-Farber Cancer Institute and Harvard Medical School, Boston, Massachusetts.,University Hospitals Leuven, Department of General Medical Oncology, Leuven Cancer Institute, Leuven, Belgium.,Medical Oncology Department in University Hospital Virgen del Rocio and Institute of Biomedicine of Sevilla (IBIS) (HUVR, CSIC, University of Sevilla), Sevilla, Spain.,Eli Lilly and Company, Windlesham, United Kingdom.,Eli Lilly and Company, Indianapolis, Indiana.,Sarcoma Unit, Royal Marsden NHS Foundation Trust and Institute of Cancer Research, London, United Kingdom. | 12341819202122 | NA | NA | 22 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17272 | 2020 | Medical research | NA | c(“us”, “dk”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Diagnosis and Treatment of Lower Extremity Venous Thromboembolism | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Cardiology, University Hospital Jean Minjoz, Besançon, France.,EA3920, University of Burgundy Franche-Comté, Besançon, France.,Aalborg Thrombosis Research Unit, Aalborg University, Aalborg, Denmark.,Department of Cardiology, Aalborg University Hospital, Aalborg, Denmark.,Division of Cardiovascular Medicine, Department of Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.17709 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | As Their Numbers Grow, COVID-19 “Long Haulers” Stump Experts | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | TRUE | FALSE | FALSE | publisher | other | other | no license | NA | NA | NA | subscription | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2020.18941 | 2020 | Biology (fond.) | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Nutrient Warnings on Unhealthy Foods | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Behavior, University of North Carolina Gillings School of Global Public Health, Chapel Hill.,Lineberger Comprehensive Cancer Center, University of North Carolina at Chapel Hill.,Harvard Center for Population and Development Studies, Harvard T.H. Chan School of Public Health, Cambridge, Massachusetts.,Department of Population Medicine, Harvard Medical School and Harvard Pilgrim Health Care Institute, Boston, Massachusetts. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.19181 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Skilled Nursing Facility Participation in a Bundled Payment Model With Institutional Spending for Joint Replacement Surgery | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Internal Medicine, Washington University School of Medicine in St Louis, St Louis, Missouri.,Associate Editor, JAMA.,Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts. | 12345 | NA | NA | 5 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.19378 | 2020 | Medical research | NA | c(“fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of an Emergency Department Care Bundle on 30-Day Hospital Discharge and Survival Among Elderly Patients With Acute Heart Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-03051402 | 1 | NA | NA | 4 | subscription | NA | Sorbonne Université, Improving Emergency Care FHU, Paris, France.,Emergency Department, Hôpital Pitié-Salpêtrière, Assistance Publique - Hôpitaux de Paris (APHP), Paris, France.,Clinical Research Platform (URC-CRC-CRB), Hôpital Saint-Antoine, APHP, Paris, France.,Emergency Department, Hôpital Bretonneau, Tours, France.,Department of Anesthesia, Burn and Critical Care, Hôpitaux Universitaires Saint Louis Lariboisière, FHU PROMICE INI-CRCT, AP-HP, France.,Université de Paris, Paris, France.,U942 - MASCOT- Inserm, Paris, France. | 12341920 | NA | NA | 20 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 1 | 0 | NA | NA | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.21506 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Exome Sequencing as Part of a Multidisciplinary Approach to Diagnosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Assistance Publique Hôpitaux de Paris, Hôpital Tenon, Paris, France”),list(name = “Laboratoire Biomnis, Lyon, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | NA | NA | NA | NA | NA | NA | NA | 1 | 0 | NA | NA | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.21512 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Treatment of Opioid Use Disorder Among Commercially Insured Patients in the Context of the COVID-19 Pandemic | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts.,McLean Hospital, Belmont, Massachusetts.,RAND Corporation, Arlington, Virginia.,Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts. | 123456 | NA | NA | 6 | 1 | 0 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.21717 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Looking to Long-term Survivors for Improved Pancreatic Cancer Treatment | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | NA | NA | NA | NA | 1 | 0 | 1 | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA | NA |
| 10.1001/jama.2020.23068 | 2020 | Medical research | NA | c(“at”, “us”, “fr”, “nl”, “au”, “gb”, “fi”, “no”) | 0098-7484 | 0098-7484 | JAMA | en | Association Between Depressive Symptoms and Incident Cardiovascular Diseases | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Public Health and Primary Care, University of Cambridge, Cambridge, United Kingdom.,Department of Clinical Neurosciences, University of Cambridge, Cambridge, United Kingdom.,Center for Behavioral Cardiovascular Health, Columbia University Medical Center, New York, New York.,Applied Behavioral Medicine Research Institute, Stony Brook University, Stony Brook, New York.,Feinstein Institutes for Medical Research, Northwell Health, Manhasset, New York. | 1232829303132 | NA | NA | 32 | 0 | 1 | NA | 1 | NA | NA | NA | NA | NA | NA | NA | 0 | 1 | NA | NA | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.2436 | 2020 | Medical research | NA | c(“us”, “fr”, “gb”) | 0098-7484 | 0098-7484 | JAMA | en | Addressing Social Determinants of Health | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Boston VA Healthcare System, Boston, Massachusetts.,Boston University School of Public Health, Boston, Massachusetts.,Harvard Global Health Institute, Harvard University, Cambridge, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.2477 | 2020 | Medical research | NA | c(“do”, “fr”, “pr”, “mq”, “ht”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Effect of a Chikungunya Virus–Like Particle Vaccine on Safety and Tolerability Outcomes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Vaccine Research Center, National Institute of Allergy and Infectious Diseases, National Institutes of Health, Bethesda, Maryland.,INSERM Centre d’Investigation Clinique (CIC) 1424, Centre Hospitalier Universitaire (CHU) de Martinique, France.,PR Clinical and Translational Research Consortium (PRCTRC), Puerto Rico.,University of Puerto Rico Medical Sciences Campus, San Juan, Puerto Rico. | 1234534353637 | NA | NA | 37 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.2533 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Premature Menopause and Risk for Cardiovascular Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | INSERM U1018, Villejuif, France | 1 | NA | NA | 1 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.2687 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Medicaid Work Requirements Shift to New Terrain | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Harvard Medical School, Harvard University, Boston, Massachusetts.,School of Social Work, Columbia University, New York, New York. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.2717 | 2020 | Medical research | NA | c(“id”, “za”, “us”, “au”, “in”, “cz”, “it”, “br”, “nl”, “be”, “ie”, “ca”, “gb”, “fr”, “de”, “mx”, “cn”, “es”) | 0098-7484 | 0098-7484 | JAMA | en | Prevalence and Outcomes of Infection Among Patients in Intensive Care Units in 2017 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Intensive Care, Erasme University Hospital, Université Libre de Bruxelles, Brussels, Belgium.,Department of Anesthesiology and Intensive Care, Uniklinikum Jena, Jena, Germany.,Bloomsbury Institute of Intensive Care Medicine, University College London, London, England.,Department of Intensive Care Medicine, Multidisciplinary Intensive Care Research Organization, St James’s Hospital, Dublin, Ireland.,Hospital Clinic, IDIBAPS, Universidad de Barcelona, CIBERES, Barcelona, Spain.,Outcomes Research Consortium, Cleveland, Ohio.,Division of Pulmonary and Critical Care Medicine, School of Medicine, Washington University in St Louis, St Louis, Missouri.,Level l Trauma Centre, Netcare Union/Clinton Hospitals, Alberton, South Africa.,Department of Critical Care Medicine, University of Pittsburgh, Pittsburgh, Pennsylvania. | 12342021222324 | NA | NA | 24 | 0 | 1 | NA | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.3265 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Delivery of Talc for Pleurodesis of Malignant Pleural Effusions | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Thoracic Surgery, University of Lorraine, Vandoeuvre-lès-Nancy, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.3268 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Delivery of Talc for Pleurodesis of Malignant Pleural Effusions—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Academic Respiratory Unit, University of Bristol, Bristol, England”) | NA | NA | NA | 2 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.4404 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Effect of Physician Notification Regarding Nonadherence to Colorectal Cancer Screening on Early Cancer Detection | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of General Practice, Faculty of Medicine of Nantes, Nantes, France”),list(name = “Regional Association in Charge of Colorectal Cancer Screening Program, Nantes, France”),list(name = “Regional Association in Charge of Colorectal Cancer Screening Program, La Roche sur Yon, France”),list(name = “Cancer Registry for Loire-Atlantique and Vendée Geographic Areas, Nantes, France”),list(name = “Department of Epidemiology and Biostatistics, Nantes University Hospital, Nantes Cedex 1, France”) | NA | NA | NA | 7 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.4686 | 2020 | Medical research | NA | c(“fr”, “us”) | 0098-7484 | 0098-7484 | JAMA | en | Postacute Care Preparedness for COVID-19 | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts.,Cardiovascular Division, Department of Medicine, Washington University School of Medicine in St Louis, St Louis, Missouri.,Center for Health Economics and Policy, Institute for Public Health, Washington University in St Louis, St Louis, Missouri.,Associate Editor. | 12 | NA | NA | 2 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher | other | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.5064 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Ondansetron Use in Pregnancy and Congenital Malformations | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Association de lutte contre l’hyperémèse gravidique (French Patient Organization Against Hyperemesis Gravidarum), Vouleme, France,Department of Obstetrics and Gynecology, Hopitaux Universitaires de Strasbourg, Strasbourg, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.6130 | 2020 | Medical research | NA | c(“fr”, “us”, “cn”) | 0098-7484 | 0098-7484 | JAMA | en | Association of Public Health Interventions With the Epidemiology of the COVID-19 Outbreak in Wuhan, China | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Epidemiology and Biostatistics, School of Public Health, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China.,Department of Occupational and Environmental Health, Ministry of Education Key Laboratory of Environment and Health, and State Key Laboratory of Environmental Health (Incubating), School of Public Health, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China.,School of Public Health, Ministry of Education Key Laboratory of Public Health Safety, Fudan University, Shanghai, China.,Department of Biostatistics, Harvard T.H. Chan School of Public Health, Boston, Massachusetts.,Department of Statistics, Harvard University, Boston, Massachusetts. | 123459101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.6983 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Hydroxyethyl Starch vs Saline for Volume Expansion After Abdominal Surgery—Reply | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | hal-02899899 | 1 | NA | NA | 4 | subscription | NA | Hôpital Estaing, Centre Hospitalier Universitaire (CHU) Clermont-Ferrand, Clermont-Ferrand, France,Direction de la Recherche Clinique (DRCI), Centre Hospitalier Universitaire (CHU) Clermont-Ferrand, Clermont-Ferrand, France,Hôpital Saint-Eloi, Centre Hospitalier Universitaire (CHU) Montpellier, Montpellier, France | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | repository | green | green_only | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.7197 | 2020 | Medical research | NA | c(“fr”, “us”, “il”) | 0098-7484 | 0098-7484 | JAMA | en | Variation in COVID-19 Hospitalizations and Deaths Across New York City Boroughs | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Richard A. and Susan F. Smith Center for Outcomes Research in Cardiology, Beth Israel Deaconess Medical Center, Boston, Massachusetts.,Department of Medicine, NYU Langone Medical Center, New York, New York.,Department of Medicine, New York Presbyterian/Columbia University Medical Center, New York, New York.,Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Cardiovascular Division, Washington University School of Medicine in St Louis, St Louis, Missouri.,Associate Editor. | 1234567 | NA | NA | 7 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.8255 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Use of Prone Positioning in Nonintubated Patients With COVID-19 and Hypoxemic Acute Respiratory Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service des Maladies Respiratoires, Centre Hospitalier d’Aix-en-Provence, Aix-en-Provence, France.,Faculté de médecine, Université Grenoble Alpes, Grenoble, France.,Médecine Intensive Réanimation, Assistance Publique-Hôpitaux de Marseille, Marseille, France.,Centre d’Etudes et de Recherches sur les Services de Santé et qualité de vie EA 3279, Aix-Marseille Université, Marseille, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jama.2020.8714 | 2020 | Medical research | NA | fr | 0098-7484 | 0098-7484 | JAMA | en | Sustainability, Business, and Health | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Harvard Business School, Boston, Massachusetts.,Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Harvard Kennedy School, Cambridge, Massachusetts. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.8969 | 2020 | Medical research | NA | c(“us”, “fr”) | 0098-7484 | 0098-7484 | JAMA | en | Therapies Offered at Residential Addiction Treatment Programs in the United States | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Health Policy and Management, Yale University, New Haven, Connecticut.,Department of Health Policy and Management, Johns Hopkins Bloomberg School of Public Health, Baltimore, Maryland.,Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Department of Medicine, Massachusetts General Hospital, Boston.,Department of Health Care Policy, Harvard Medical School, Boston, Massachusetts. | 123456 | NA | NA | 6 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jama.2020.9049 | 2020 | Medical research | NA | NA | 0098-7484 | 0098-7484 | JAMA | en | Reducing Intraoperative Hypotension Using a Machine Learning–Derived Early Warning System | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Anaesthesiology and Surgical Intensive Care Unit, Groupe Hospitalier Bichat Claude Bernard, Paris, France”) | NA | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | NA | NA | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
| 10.1001/jamacardio.2019.4296 | 2020 | Medical research | NA | c(“de”, “gb”, “fr”, “nl”, “pl”, “ca”, “it”, “ch”, “us”, “br”, “au”, “th”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Sex With Outcomes in Patients Undergoing Percutaneous Coronary Intervention | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Heart Center, Department of Clinical and Experimental Cardiology, Amsterdam Cardiovascular Sciences, Amsterdam UMC, University of Amsterdam, Amsterdam, the Netherlands.,Cardiology Unit, Department of Internal Medicine, Faculty of Medicine, Prince of Songkla University, Songkhla, Thailand.,Cardiology Division, Department of Internal Medicine, University of Campinas, Campinas, Brazil.,Department of Cardiology, Bern University Hospital, Bern, Switzerland.,Erasmus Medical Center, Erasmus University, Rotterdam, the Netherlands.,Cardialysis Clinical Trials Management and Core Laboratories, Westblaak 98, Rotterdam, the Netherlands.,Interventional Cardiovascular Research and Clinical Trials, The Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,National Heart and Lung Institute, Imperial College London, London, England. | 12321222324 | NA | NA | 24 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.4367 | 2020 | Medical research | NA | c(“us”, “gb”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Adjunctive Antithrombotic Therapy for Patients With Aortic Stenosis Undergoing Transcatheter Aortic Valve Replacement | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiovascular Medicine, Yale University School of Medicine, New Haven, Connecticut.,Columbia University Medical Center, New York, New York.,Barts Heart Centre, London and Queen Mary University of London, London, United Kingdom.,Clinique Pasteur, Toulouse, France.,St Thomas’ Hospital, London, United Kingdom. | 12346789 | NA | NA | 9 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.4638 | 2020 | Medical research | NA | c(“br”, “au”, “fr”, “it”, “us”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Race With Disease Expression and Clinical Outcomes Among Patients With Hypertrophic Cardiomyopathy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiovascular Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Internal Medicine, University of Michigan, Ann Arbor.,Stanford Center for Inherited Heart Disease, Palo Alto, California.,Section of Cardiovascular Medicine, Yale University, New Haven, Connecticut.,Heart Institute and the Division of Human Genetics, Cincinnati Children’s Hospital Medical Center, Cincinnati, Ohio.,Department of Biostatistics, Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 1234514151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2019.5097 | 2020 | Medical research | NA | c(“re”, “pt”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Usefulness of Routine Fractional Flow Reserve for Clinical Management of Coronary Artery Disease in Patients With Diabetes | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Département de Cardiologie, Institut Coeur-Poumon, Centre Hospitalier Universitaire de Lille, Lille, France.,Institut national de la santé et de la recherche médicale INSERM U1011, Lille-II-University, Lille, France.,Serviço de Cardiologia, Hospital Prof Doutor Fernando da Fonseca, Amadora, Portugal.,Serviço de Cardiologia, Centro Hospitalar Trás-os-Montes e Alto Douro-Unidade Hospitalar Vila Real, Vila Real, Portugal.,Serviço de Cardiologia, Hospital Espírito Santo, Évora, Portugal.,Department of Cardiologie, Hôpital Privé d’Antony, Antony, France.,Serviço de Cardiologia, Hospital de Santa Cruz-Centro Hospitalar de Lisboa Ocidental, Carnaxide, Portugal. | 1233536373839 | NA | NA | 39 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 1 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2019.5173 | 2020 | Medical research | NA | c(“hu”, “fr”, “jp”, “uy”, “mx”, “hk”, “om”, “eg”, “ph”, “gb”, “us”, “za”, “nl”, “ar”, “cz”, “de”, “si”, “pt”, “dk”, “be”, “ve”, “ca”, “at”, “au”, “gr”, “iq”, “in”, “ae”, “br”, “no”, “cl”, “mt”, “ch”, “it”, “ro”, “ge”, “co”, “tr”, “se”, “lv”, “es”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Reducing the Clinical and Public Health Burden of Familial Hypercholesterolemia | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Familial Hypercholesterolemia Foundation, Pasadena, California.,Familial Hypercholesterolemia IberoAmericana Network, Madrid, Spain.,Unidad de Investigación de Enfermedades Metabólicas, Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán, Mexico City, México.,Departamaento de Endocrinología y Metabolismo, Instituto Nacional de Ciencias Médicas y Nutrición Salvador Zubirán, Mexico City, México.,Sociedad Argentina de Lípidos, Cordoba, Argentina.,Division of Cardiovascular Medicine, Brigham and Women’s Hospital, Boston, Massachusetts.,Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 23489901 | NA | NA | 90 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.0140 | 2020 | Medical research | NA | c(“us”, “au”, “fi”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Cardiovascular Health Trajectories From Childhood Through Middle Age and Their Association With Subclinical Atherosclerosis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Preventive Medicine, Feinberg School of Medicine, Northwestern University, Chicago, Illinois.,Department of Medicine, University of Turku, Turku, Finland.,Research Centre of Applied and Preventive Cardiovascular Medicine, University of Turku, Turku, Finland.,Paavo Nurmi Centre, Sports & Exercise Medicine Unit, Department of Health and Physical Activity, University of Turku, Turku, Finland.,Department of Clinical Physiology and Nuclear Medicine, Turku University Hospital, Turku, Finland. | 12345151617 | NA | NA | 17 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.0285 | 2020 | Medical research | NA | c(“nl”, “ch”, “fr”, “at”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Sex-Based Outcomes in Patients With a High Bleeding Risk After Percutaneous Coronary Intervention and 1-Month Dual Antiplatelet Therapy | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,Associate Editor, JAMA Cardiology.,Amsterdam University Medical Center, Heart Center, Department of Clinical and Experimental Cardiology, Amsterdam Cardiovascular Sciences, Amsterdam, the Netherlands.,Hôpital de la Tour, Geneva, Switzerland.,European Hospital Georges Pompidou, Assistance Publique Hôpitaux de Paris, Sudden Death Expert Center INSERM U 970, Paris Descartes University, Paris, France.,Biosensors Europe, Morges, Switzerland.,Cardiovascular European Research Center, Massy, France. | 123678910 | NA | NA | 10 | 0 | 1 | NA | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.0728 | 2020 | Medical research | NA | c(“cz”, “ru”, “il”, “ch”, “pl”, “dk”, “fr”, “tr”, “nl”, “de”, “at”, “us”, “no”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | An Exploratory Analysis of Proprotein Convertase Subtilisin/Kexin Type 9 Inhibition and Aortic Stenosis in the FOURIER Trial | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | TIMI Study Group, Cardiovascular Division, Brigham and Women’s Hospital, Boston, Massachusetts.,National Medical Research Center of Cardiology, Moscow, Russia.,Department of Cardiology, Leiden University Medical Center, the Netherlands.,Netherlands Heart Institute, Utrecht, the Netherlands.,Oslo University Hospital, Ullevål and Medical Faculty, University of Oslo, Oslo, Norway. | 1234515161718 | NA | NA | 18 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.1240 | 2020 | Medical research | NA | c(“nl”, “us”, “at”, “fr”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Cost-effectiveness of Contemporary Statin Use Guidelines With or Without Coronary Artery Calcium Assessment in African American Individuals | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Cardiology, Department of Medicine, Massachusetts General Hospital, Harvard Medical School, Boston.,Center for Health Decision Science, Harvard T. H. Chan School of Public Health, Boston, Massachusetts.,Institute for Healthcare Delivery Science, Department of Population Health Science and Policy, Icahn School of Medicine at Mount Sinai, New York, New York.,Department of Epidemiology and Radiology, Erasmus University Medical Center, Rotterdam, the Netherlands.,Duke Clinical Research Institute, Department of Medicine, Duke University School of Medicine, Durham, North Carolina.,Department of Medicine, University of Mississippi Medical Center, Jackson.,Cardiovascular Medicine Division, Department of Medicine, University of Michigan, Ann Arbor.,Department of Health Policy and Management, Harvard T. H. Chan School of Public Health, Boston, Massachusetts. | 12341011121314 | NA | NA | 14 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.1787 | 2020 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Assessment of QT Intervals in a Case Series of Patients With Coronavirus Disease 2019 (COVID-19) Infection Treated With Hydroxychloroquine Alone or in Combination With Azithromycin in an Intensive Care Unit | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Hospices Civils de Lyon, Hôpital Cardiologique Louis Pradel, Service d’électrophysiologie et de Stimulation Cardiaque, Université de Lyon, Lyon, France.,Hospices Civils de Lyon, Hôpital Cardiologique Louis Pradel, Centre de Référence National des Troubles du Rythme Cardiaque d’origine Héréditaire, Lyon, France.,Hospices Civils de Lyon, Hôpital Edouard Herriot, Médecine Intensive - Réanimation, Lyon, France.,Centre Hospitalier de Valence, Service de Maladies Infectieuses, Valence, France. | 1234567 | NA | NA | 7 | 1 | 0 | 1 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | no license | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2020.2864 | 2020 | Medical research | NA | c(“au”, “fr”, “es”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Health Literacy and Primordial Prevention in Childhood—An Opportunity to Reduce the Burden of Cardiovascular Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Université de Paris, INSERM U970, Paris Cardiovascular Research Centre, Integrative Epidemiology of Cardiovascular Disease, Paris, France.,Baker Heart and Diabetes Institute, Melbourne, Australia.,Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,Centro Nacional de Investigaciones Cardiovasculares, Madrid, Spain. | 123 | NA | NA | 3 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2020.2981 | 2020 | Medical research | NA | c(“fr”, “se”, “us”, “je”, “il”, “gb”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Clinical Application of High-Sensitivity Troponin Testing in the Atherosclerotic Cardiovascular Disease Framework of the Current Cholesterol Guidelines | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | TIMI Study Group, Division of Cardiovascular Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Colorado Prevention Center (CPC) Clinical Research, Division of Cardiology, Department of Medicine, University of Colorado School of Medicine, Aurora.,Department of Pathology, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Division of Cardiovascular Medicine, Department of Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,AstraZeneca R&D, Gothenburg, Sweden. | 12345910111213 | NA | NA | 13 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.3377 | 2020 | Medical research | NA | c(“at”, “fr”, “de”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association of Culprit Lesion Location With Outcomes of Culprit-Lesion-Only vs Immediate Multivessel Percutaneous Coronary Intervention in Cardiogenic Shock | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | The Zena and Michael A. Wiener Cardiovascular Institute, Icahn School of Medicine at Mount Sinai, New York, New York.,Wilhelminenspital, Department of Cardiology, Vienna, Austria.,ACTION Study Group, Centre Hospitalier Universitaire Pitié-Salpêtrière, Sorbonne Université Paris 6, Paris, France.,Institut für Herzinfarktforschung, Ludwigshafen, Germany.,Heart Center Leipzig at University of Leipzig and Leipzig Heart Institute, Leipzig, Germany.,Medical School, Sigmund Freud University, Vienna, Austria. | 12313141516 | NA | NA | 16 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.3416 | 2020 | Medical research | NA | c(“gb”, “au”, “fr”, “ca”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Understanding Electrocardiography in Adult Patients With Congenital Heart Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Cardiac Electrophysiology Section, European Georges Pompidou Hospital, Paris, France.,Adult Congenital Heart Disease Unit, Department of Cardiology, European Georges Pompidou Hospital, Paris, France.,Pasteur Clinic, Toulouse, France.,Hôpital Marie Lannelongue, Le Plessis-Robinson, France.,Sydney Medical School, Sydney, New South Wales, Australia.,Royal Brompton Hospital, London, United Kingdom.,Montreal Heart Institute, Montreal, Quebec, Canada. | 12345678 | NA | NA | 8 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2020.3638 | 2020 | Medical research | NA | c(“us”, “fr”, “il”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Quality of Care and Outcomes Among Medicare Advantage vs Fee-for-Service Medicare Patients Hospitalized With Heart Failure | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Medicine, Brigham and Women’s Hospital, Harvard Medical School, Boston, Massachusetts.,Richard A. and Susan F. Smith Center for Outcomes Research in Cardiology, Division of Cardiology, Department of Medicine, Beth Israel Deaconess Medical Center, Boston, Massachusetts.,VA Boston Healthcare System, Boston, Massachusetts.,Boston University School of Public Health, Boston, Massachusetts.,Division of Cardiology, David Geffen School of Medicine, University of California, Los Angeles Medical Center.,Feinberg School of Medicine, Northwestern University, Chicago, Illinois.,Deputy Editor, JAMA Cardiology.,Brigham and Women’s Hospital Heart & Vascular Center and Harvard Medical School, Boston, Massachusetts.,Cardiovascular Division, Department of Medicine, Washington University School of Medicine, St Louis, Missouri.,Center for Health Economics and Policy, Washington University Institute for Public Health, St Louis, Missouri. | 1234101112 | NA | NA | 12 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.4105 | 2020 | Medical research | NA | c(“dk”, “us”, “au”, “jp”, “gb”, “fr”, “se”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Association Between Reproductive Life Span and Incident Nonfatal Cardiovascular Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | School of Public Health, The University of Queensland, Brisbane, Australia.,Nutritional Epidemiology Group, School of Food Science and Nutrition, University of Leeds, Leeds, United Kingdom.,Department of Anthropology, University of Hawaii, Hilo.,Department of Medical Epidemiology and Biostatistics, Karolinska Institutet, Stockholm, Sweden.,Department of Psychiatry, Icahn School of Medicine at Mount Sinai, New York.,International Agency for Research on Cancer, World Health Organization, Lyon, France. | 1234521222324 | NA | NA | 24 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamacardio.2020.4138 | 2020 | Medical research | NA | fr | 2380-6583 | 2380-6583 | JAMA Cardiology | en | A Middle-aged Patient in a Coma 4 Weeks After Percutaneous Radiofrequency Ablation for Atrial Fibrillation | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Service de Réanimation Polyvalente, Centre Hospitalier Victor Dupouy, Argenteuil, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | hybrid | 1 | 1 | 1 |
| 10.1001/jamacardio.2020.4390 | 2020 | Medical research | NA | c(“be”, “je”, “fr”, “br”, “ph”, “ca”, “gb”) | 2380-6583 | 2380-6583 | JAMA Cardiology | en | Rivaroxaban and Aspirin in Patients With Symptomatic Lower Extremity Peripheral Artery Disease | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Population Health Research Institute, McMaster University, Hamilton Health Sciences, Hamilton, Ontario, Canada.,Department of Medicine, University of Toronto, Toronto, Ontario, Canada.,Department of Medicine, McMaster University, Hamilton, Ontario, Canada.,Department of Health Research Methods, Evidence, and Impact, McMaster University, Hamilton, Ontario, Canada. | 1231112 | NA | NA | 12 | 1 | 0 | 0 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | hybrid | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.3336 | 2020 | Medical research | NA | c(“ge”, “fr”, “us”, “ca”, “je”, “sn”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy and Safety of Dupilumab in Adolescents With Uncontrolled Moderate to Severe Atopic Dermatitis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, Oregon Health & Science University, Portland.,Department of Dermatology, Northwestern University Feinberg School of Medicine, Chicago, Illinois.,Department of Pediatrics, Northwestern University Feinberg School of Medicine, Chicago, Illinois.,Department of Pediatrics, School of Medicine, Saint Louis University, St. Louis, Missouri.,Department of Pediatrics, National Jewish Health and University of Colorado School of Medicine, Denver.,Sanofi, Chilly-Mazarin, France.,Regeneron Pharmaceuticals Inc, Tarrytown, New York. | 12342324252627 | NA | NA | 27 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by-nc-nd | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.3446 | 2020 | Medical research | NA | NA | 2168-6068 | 2168-6068 | JAMA Dermatology | en | A Solitary Nodular Vulvar Lesion | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | list(name = “Department of Dermatology, Hospital de la Santa Creu i Sant Pau, Universitat Autònoma de Barcelona, Barcelona, Spain”),list(name = “Department of Pathology, Hospital Universitario Fundación Alcorcón, Madrid, Spain”),list(name = “Department of Dermatology, Hospital Universitario de Móstoles, Madrid, Spain”) | NA | NA | NA | 3 | 1 | 0 | 0 | 0 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.3617 | 2020 | Medical research | NA | c(“jp”, “fr”, “es”, “us”, “je”, “de”, “gb”, “ca”) | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Efficacy and Safety of Multiple Dupilumab Dose Regimens After Initial Successful Treatment in Patients With Atopic Dermatitis | NA | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Division of Allergy and Immunology, Klinik für Dermatologie, Venerologie und Allergologie, Charité-Universitätsmedizin Berlin, Berlin, Germany.,Department of Dermatology, Oregon Health & Science University, Portland.,Institute and Comprehensive Center for Inflammation Medicine, University of Lübeck, Lübeck, Germany.,Innovaderm Research, Montreal, Quebec, Canada.,Department of Dermatology, Nice University Hospital, Nice, France.,Regeneron Pharmaceuticals, Inc, Tarrytown, New York.,Sanofi, Bridgewater, New Jersey. | 123452021222324 | NA | NA | 24 | 1 | 0 | 0 | 1 | TRUE | FALSE | FALSE | publisher;repository | c(“green”, “other”) | other | cc-by-nc-nd | 0 | 1 | NA | subscription | NA | NA | NA | 0 | 0 | 0 |
| 10.1001/jamadermatol.2019.3726 | 2020 | Medical research | NA | fr | 2168-6068 | 2168-6068 | JAMA Dermatology | en | Malignant Atrophic Papulosis | 0 | NA | NA | NA | NA | NA | NA | American Medical Association | American Medical Association | NA | 1 | NA | NA | 4 | subscription | NA | Department of Dermatology, University Hospital of Besançon, Besançon, France.,Department of Internal Medicine, University Hospital of Besançon, Besançon, France. | 123 | NA | NA | 3 | 1 | 0 | 1 | 1 | FALSE | FALSE | FALSE | closed | closed | closed | NA | 1 | 0 | NA | subscription | NA | NA | NA | 1 | 1 | 1 |
# Fonction NA
table_na <- function(data){
data <- data %>% ungroup()
# Volume et part NA par variable
nb_NA <- as.data.frame(apply(is.na(data), 2, sum)) %>%
rename(`nombre de NA` = `apply(is.na(data), 2, sum)`) %>%
mutate(pourcentage = `nombre de NA`/nrow(data)*100) %>%
mutate(pourcentage = paste(round(pourcentage, 2), "%", sep = " ")) %>%
arrange(desc(pourcentage))
nb_NA %>% datatable(options = list(pageLength = 20, searching = F), width = '60%')
}
table_na(bso_2013)
table_na(bso_2014)
table_na(bso_2015)
table_na(bso_2016)
table_na(bso_2017)
table_na(bso_2018)
table_na(bso_2019)
table_na(bso_2020)
# Fonction NA
global_stats <- function(data){
# Sous df sans les variables qui prennent trop de valeurs différentes et ralentissent le knit du rapport
data <- data %>% select(-c("doi", "year", "journal_issns","journal_issn_l","journal_name", "name", "author_position", "email"))
# Summarytools
summarytools::dfSummary(data, style = "grid", graph.magnif = 0.75, valid.col = FALSE, tmp.img.dir = "/tmp", max.tbl.height = 800, headings=FALSE, method = "render")
}
global_stats(bso_2013)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences |
17588 (15.0%) 6712 ( 5.7%) 4339 ( 3.7%) 8624 ( 7.3%) 3406 ( 2.9%) 10536 ( 9.0%) 2888 ( 2.5%) 40340 (34.4%) 15072 (12.8%) 7894 ( 6.7%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. Disclosure: The authors r 3. The authors declare that 4. Agnes Bernet and Patrick 5. All authors declare that 6. All authors declared that 7. Authors have no actual or 8. Conflict of interest/disc 9. Conflict of interestWilhe 10. Disclosure: All authors h [ 16 others ] |
65 (69.9%) 3 ( 3.2%) 2 ( 2.2%) 1 ( 1.1%) 1 ( 1.1%) 1 ( 1.1%) 1 ( 1.1%) 1 ( 1.1%) 1 ( 1.1%) 1 ( 1.1%) 16 (17.2%) |
117306 (99.9%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“de”, “fr”) 5. c(“gb”, “fr”) 6. c(“ca”, “fr”) 7. c(“it”, “fr”) 8. c(“ch”, “fr”) 9. c(“fr”, “gb”) 10. c(“fr”, “it”) [ 1959 others ] |
27307 (85.2%) 231 ( 0.7%) 153 ( 0.5%) 109 ( 0.3%) 107 ( 0.3%) 101 ( 0.3%) 91 ( 0.3%) 89 ( 0.3%) 88 ( 0.3%) 71 ( 0.2%) 3718 (11.6%) |
85334 (72.7%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. pt 6. it 7. ja 8. nl 9. ru 10. is [ 34 others ] |
87332 (74.4%) 27936 (23.8%) 691 ( 0.6%) 354 ( 0.3%) 352 ( 0.3%) 259 ( 0.2%) 199 ( 0.2%) 31 ( 0.0%) 22 ( 0.0%) 19 ( 0.0%) 125 ( 0.1%) |
79 (0.1%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Comptes rendus 4. Présentation 5. Editorial 6. Avant-propos 7. Preface 8. Lu pour vous 9. Reply 10. Foreword [ 115596 others ] |
191 ( 0.2%) 102 ( 0.1%) 83 ( 0.1%) 69 ( 0.1%) 63 ( 0.1%) 51 ( 0.0%) 41 ( 0.0%) 34 ( 0.0%) 29 ( 0.0%) 26 ( 0.0%) 116707 (99.4%) |
3 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
86719 (79.5%) 22342 (20.5%) |
8338 (7.1%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1610.2 (1098) min < med < max: 0 < 1612.3 < 6270.3 IQR (CV) : 1382.1 (0.7) |
1436 distinct values | 89729 (76.4%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
6008 (21.7%) 231 ( 0.8%) 11968 (43.2%) 4226 (15.3%) 178 ( 0.6%) 5066 (18.3%) |
89722 (76.4%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1070.4 (1011.4) min < med < max: 0 < 1295.1 < 6270.3 IQR (CV) : 1851.2 (0.9) |
2627 distinct values | 103410 (88.1%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 9100.9 (846420.6) min < med < max: 0 < 1570 < 1e+08 IQR (CV) : 1890 (93) |
191 distinct values | 103403 (88.1%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 1997.3 (848.6) min < med < max: 115.2 < 1985 < 5193.6 IQR (CV) : 1029.9 (0.4) |
1254 distinct values | 95044 (81.0%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 224 (300.2) min < med < max: 10 < 69 < 2350 IQR (CV) : 436 (1.3) |
205 distinct values | 95275 (81.2%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. Public Library of Science 9. American Chemical Society 10. EDP Sciences [ 1013 others ] |
36525 (31.1%) 10471 ( 8.9%) 8706 ( 7.4%) 7937 ( 6.8%) 7218 ( 6.1%) 3746 ( 3.2%) 2539 ( 2.2%) 2386 ( 2.0%) 2270 ( 1.9%) 2261 ( 1.9%) 33340 (28.4%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. Public Library of Science 9. American Chemical Society 10. EDP Sciences [ 1012 others ] |
36525 (31.1%) 10471 ( 8.9%) 9267 ( 7.9%) 7937 ( 6.8%) 7218 ( 6.1%) 3746 ( 3.2%) 2539 ( 2.2%) 2386 ( 2.0%) 2270 ( 1.9%) 2261 ( 1.9%) 32779 (27.9%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. cea-01135465 3. hal-00551930 4. hal-00573640 5. hal-00703051 6. hal-00724212 7. hal-00779835 8. hal-00785611 9. hal-00797452 10. hal-00824511 [ 14091 others ] |
88 ( 0.6%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 14158 (99.3%) |
103135 (87.8%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
44059 (37.5%) 73340 (62.5%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
All NA’s | 117399 (100.0%) |
||
| 18 | part_APC_paid_by_authors [character] |
All NA’s | 117399 (100.0%) |
||
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
36525 (31.1%) 9632 ( 8.2%) 40501 (34.5%) 30741 (26.2%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
5335 ( 4.7%) 8661 ( 7.7%) 37694 (33.3%) 61359 (54.3%) |
4350 (3.7%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
5689 (36.0%) 10111 (64.0%) |
101599 (86.5%) |
|
| 22 | corresponding [logical] |
1. TRUE | 3029 (100.0%) | 114370 (97.4%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 10.3 (97.7) min < med < max: 1 < 4 < 3059 IQR (CV) : 5 (9.5) |
394 distinct values | 231 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
94604 (80.7%) 22564 (19.3%) |
231 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 7.4 (78.1) min < med < max: 0 < 3 < 3055 IQR (CV) : 5 (10.5) |
338 distinct values | 231 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
11984 (52.8%) 10714 (47.2%) |
94701 (80.7%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
2369 ( 5.5%) 41050 (94.5%) |
73980 (63.0%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
63740 (54.6%) 53094 (45.4%) |
565 (0.5%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
104798 (89.7%) 12036 (10.3%) |
565 (0.5%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
103346 (88.5%) 13488 (11.5%) |
565 (0.5%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
63740 (54.6%) 14794 (12.7%) 20461 (17.5%) 17839 (15.3%) |
565 (0.5%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
1848 ( 1.6%) 7681 ( 6.6%) 6889 ( 5.9%) 4043 ( 3.5%) 63740 (54.6%) 2515 ( 2.2%) 643 ( 0.6%) 17839 (15.3%) 6168 ( 5.3%) 5468 ( 4.7%) |
565 (0.5%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
63740 (54.6%) 4363 ( 3.7%) 8324 ( 7.1%) 17839 (15.3%) 13057 (11.2%) 9511 ( 8.1%) |
565 (0.5%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. cc-by 4. cc-by-nc 5. cc-by-nc-nd 6. cc-by-nc-sa 7. cc-by-nd 8. cc-by-sa 9. no license 10. other |
2 ( 0.0%) 2 ( 0.0%) 10381 (29.4%) 1709 ( 4.8%) 3985 (11.3%) 565 ( 1.6%) 53 ( 0.2%) 81 ( 0.2%) 17704 (50.2%) 773 ( 2.2%) |
82144 (70.0%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 20375 (33.0%) 1 : 41443 (67.0%) |
55581 (47.3%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 37984 (61.4%) 1 : 23834 (38.6%) |
55581 (47.3%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 5357 (50.9%) 1 : 5176 (49.1%) |
106866 (91.0%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
4363 ( 3.7%) 8324 ( 7.1%) 13057 (11.2%) 91090 (78.0%) |
565 (0.5%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
10417 (47.9%) 40 ( 0.2%) 8791 (40.4%) 62 ( 0.3%) 2455 (11.3%) |
95634 (81.5%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 10519 (48.3%) 1 : 11246 (51.7%) |
95634 (81.5%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
615 ( 0.7%) 21699 (23.1%) 71505 (76.2%) |
23580 (20.1%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 25157 (34.1%) 1 : 48526 (65.9%) |
43716 (37.2%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 25157 (27.0%) 1 : 68174 (73.0%) |
24068 (20.5%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 30514 (29.4%) 1 : 73350 (70.6%) |
13535 (11.5%) |
global_stats(bso_2014)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
18141 (15.2%) 6857 ( 5.8%) 4351 ( 3.7%) 8952 ( 7.5%) 3252 ( 2.7%) 10488 ( 8.8%) 2910 ( 2.4%) 41727 (35.0%) 14576 (12.2%) 7950 ( 6.7%) 1 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. Conflict of interest: The 3. Financial & competing int 4. The authors declare no co 5. Authors declared that the 6. Authors have no conflict 7. Conflict of Interest Drs. 8. Conflict of Interest: The 9. Conflict of interests: Th 10. Conflicts of Interest: No [ 23 others ] |
26 (42.6%) 2 ( 3.3%) 2 ( 3.3%) 2 ( 3.3%) 1 ( 1.6%) 1 ( 1.6%) 1 ( 1.6%) 1 ( 1.6%) 1 ( 1.6%) 1 ( 1.6%) 23 (37.7%) |
119144 (99.9%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“de”, “fr”) 5. c(“fr”, “gb”) 6. c(“ca”, “fr”) 7. c(“gb”, “fr”) 8. c(“fr”, “de”) 9. c(“fr”, “it”) 10. c(“it”, “fr”) [ 4878 others ] |
26623 (65.7%) 677 ( 1.7%) 479 ( 1.2%) 346 ( 0.9%) 315 ( 0.8%) 306 ( 0.8%) 256 ( 0.6%) 253 ( 0.6%) 249 ( 0.6%) 249 ( 0.6%) 10768 (26.6%) |
78684 (66.0%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. pt 5. it 6. de 7. ja 8. ru 9. nl 10. is [ 32 others ] |
89084 (74.8%) 28073 (23.6%) 676 ( 0.6%) 332 ( 0.3%) 315 ( 0.3%) 279 ( 0.2%) 150 ( 0.1%) 42 ( 0.0%) 25 ( 0.0%) 20 ( 0.0%) 129 ( 0.1%) |
80 (0.1%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Lu pour vous 4. Editorial 5. Comptes rendus 6. Preface 7. Présentation 8. Avant-propos 9. Reply 10. Évaluez-vous ! [ 117703 others ] |
182 ( 0.2%) 128 ( 0.1%) 58 ( 0.0%) 57 ( 0.0%) 50 ( 0.0%) 47 ( 0.0%) 46 ( 0.0%) 42 ( 0.0%) 31 ( 0.0%) 16 ( 0.0%) 118542 (99.4%) |
6 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
86121 (77.1%) 25600 (22.9%) |
7484 (6.3%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1644.9 (1062.2) min < med < max: 0 < 1688.6 < 9028.4 IQR (CV) : 1257.9 (0.6) |
1863 distinct values | 88336 (74.1%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
5716 (18.5%) 603 ( 2.0%) 9893 (32.0%) 8185 (26.5%) 245 ( 0.8%) 6231 (20.2%) |
88332 (74.1%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1186.4 (1113.6) min < med < max: 0 < 1291.1 < 5043.1 IQR (CV) : 1976.9 (0.9) |
3404 distinct values | 104376 (87.6%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 1628.8 (11524.1) min < med < max: 0 < 1600 < 9e+05 IQR (CV) : 2100 (7.1) |
214 distinct values | 104372 (87.6%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 1984.1 (822.3) min < med < max: 115.2 < 1856.7 < 9028.4 IQR (CV) : 962.3 (0.4) |
1728 distinct values | 93374 (78.3%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 421.7 (656.3) min < med < max: 10 < 50 < 1869 IQR (CV) : 493 (1.6) |
163 distinct values | 93978 (78.8%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1106 others ] |
37139 (31.2%) 11278 ( 9.5%) 8897 ( 7.5%) 7585 ( 6.4%) 7126 ( 6.0%) 3471 ( 2.9%) 2654 ( 2.2%) 2291 ( 1.9%) 2123 ( 1.8%) 1991 ( 1.7%) 34650 (29.1%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1105 others ] |
37139 (31.2%) 11278 ( 9.5%) 9540 ( 8.0%) 7585 ( 6.4%) 7126 ( 6.0%) 3471 ( 2.9%) 2654 ( 2.2%) 2291 ( 1.9%) 2123 ( 1.8%) 1991 ( 1.7%) 34007 (28.5%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. cea-01162326 3. hal-00528471 4. hal-00578955 5. hal-00705523 6. hal-00753801 7. hal-00843212 8. hal-00977090 9. hal-01020994 10. hal-01027596 [ 15205 others ] |
84 ( 0.5%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 15274 (99.3%) |
103829 (87.1%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
45681 (38.3%) 73524 (61.7%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
All NA’s | 119205 (100.0%) |
||
| 18 | part_APC_paid_by_authors [character] |
All NA’s | 119205 (100.0%) |
||
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
37139 (31.2%) 10011 ( 8.4%) 39734 (33.3%) 32321 (27.1%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
5273 ( 4.6%) 9560 ( 8.3%) 43478 (37.6%) 57296 (49.6%) |
3598 (3.0%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
5497 (32.9%) 11215 (67.1%) |
102493 (86.0%) |
|
| 22 | corresponding [logical] |
1. TRUE | 2952 (100.0%) | 116253 (97.5%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 10.4 (96.8) min < med < max: 1 < 4 < 2951 IQR (CV) : 5 (9.3) |
430 distinct values | 200 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
76361 (64.2%) 42644 (35.8%) |
200 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 5.6 (67.2) min < med < max: 0 < 2 < 2935 IQR (CV) : 5 (12) |
337 distinct values | 200 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
21914 (51.3%) 20845 (48.7%) |
76446 (64.1%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
2895 ( 5.4%) 50312 (94.6%) |
65998 (55.4%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
62745 (52.9%) 55853 (47.1%) |
607 (0.5%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
105217 (88.7%) 13381 (11.3%) |
607 (0.5%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
103014 (86.9%) 15584 (13.1%) |
607 (0.5%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
62745 (52.9%) 15533 (13.1%) 22203 (18.7%) 18117 (15.3%) |
607 (0.5%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
2373 ( 2.0%) 8990 ( 7.6%) 7707 ( 6.5%) 3133 ( 2.6%) 62745 (52.9%) 2432 ( 2.1%) 1145 ( 1.0%) 18117 (15.3%) 6737 ( 5.7%) 5219 ( 4.4%) |
607 (0.5%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
62745 (52.9%) 4805 ( 4.1%) 10135 ( 8.5%) 18117 (15.3%) 14444 (12.2%) 8352 ( 7.0%) |
607 (0.5%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. c(“cc-by-nc”, “cc-by-sa”) 4. cc-by 5. cc-by-nc 6. cc-by-nc-nd 7. cc-by-nc-sa 8. cc-by-nd 9. cc-by-sa 10. no license 11. other |
8 ( 0.0%) 1 ( 0.0%) 2 ( 0.0%) 11597 (30.7%) 1794 ( 4.8%) 4258 (11.3%) 521 ( 1.4%) 76 ( 0.2%) 76 ( 0.2%) 18356 (48.6%) 1047 ( 2.8%) |
81469 (68.3%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 21255 (33.9%) 1 : 41377 (66.1%) |
56573 (47.5%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 37803 (60.4%) 1 : 24829 (39.6%) |
56573 (47.5%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 4796 (51.4%) 1 : 4533 (48.6%) |
109876 (92.2%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
4805 ( 4.1%) 10135 ( 8.5%) 14444 (12.2%) 89214 (75.2%) |
607 (0.5%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
11222 (45.1%) 25 ( 0.1%) 10218 (41.1%) 57 ( 0.2%) 3362 (13.5%) |
94321 (79.1%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 11304 (45.4%) 1 : 13580 (54.6%) |
94321 (79.1%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
795 ( 0.8%) 22514 (23.7%) 71736 (75.5%) |
24160 (20.3%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 28268 (35.9%) 1 : 50444 (64.1%) |
40493 (34.0%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 28268 (28.8%) 1 : 69804 (71.2%) |
21133 (17.7%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 33064 (30.8%) 1 : 74337 (69.2%) |
11804 (9.9%) |
global_stats(bso_2015)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
17610 (14.6%) 6919 ( 5.8%) 4725 ( 3.9%) 9019 ( 7.5%) 3080 ( 2.6%) 10462 ( 8.7%) 3064 ( 2.5%) 42377 (35.2%) 14789 (12.3%) 8183 ( 6.8%) 1 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [logical] |
All NA’s | 120229 (100.0%) |
||
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“de”, “fr”) 5. c(“ca”, “fr”) 6. c(“fr”, “gb”) 7. c(“gb”, “fr”) 8. c(“fr”, “it”) 9. c(“it”, “fr”) 10. c(“es”, “fr”) [ 6896 others ] |
26262 (56.8%) 925 ( 2.0%) 645 ( 1.4%) 528 ( 1.1%) 418 ( 0.9%) 400 ( 0.9%) 398 ( 0.9%) 393 ( 0.8%) 365 ( 0.8%) 289 ( 0.6%) 15630 (33.8%) |
73976 (61.5%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. pt 6. it 7. ja 8. nl 9. ru 10. pl [ 33 others ] |
92150 (76.7%) 26160 (21.8%) 695 ( 0.6%) 302 ( 0.3%) 267 ( 0.2%) 263 ( 0.2%) 124 ( 0.1%) 25 ( 0.0%) 22 ( 0.0%) 19 ( 0.0%) 130 ( 0.1%) |
72 (0.1%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Présentation 5. Comptes rendus 6. Lu pour vous 7. Avant-propos 8. Preface 9. Foreword 10. Reply [ 118735 others ] |
183 ( 0.2%) 101 ( 0.1%) 83 ( 0.1%) 64 ( 0.1%) 47 ( 0.0%) 40 ( 0.0%) 38 ( 0.0%) 34 ( 0.0%) 31 ( 0.0%) 29 ( 0.0%) 119569 (99.5%) |
10 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
84068 (74.9%) 28199 (25.1%) |
7962 (6.6%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1756.8 (1106.6) min < med < max: 0 < 1856.3 < 6923.2 IQR (CV) : 1497.2 (0.6) |
2647 distinct values | 86438 (71.9%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
6144 (18.2%) 1958 ( 5.8%) 9383 (27.8%) 8670 (25.7%) 7 ( 0.0%) 7632 (22.6%) |
86435 (71.9%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1396.7 (1276.2) min < med < max: 0 < 1577.6 < 6923.2 IQR (CV) : 2284.4 (0.9) |
3995 distinct values | 103837 (86.4%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 7683.5 (781055.8) min < med < max: 0 < 1690 < 1e+08 IQR (CV) : 2150 (101.7) |
228 distinct values | 103834 (86.4%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2109 (844.8) min < med < max: 100 < 2060.3 < 5523.2 IQR (CV) : 1161.6 (0.4) |
2508 distinct values | 91843 (76.4%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 619.6 (992.8) min < med < max: 10 < 53 < 3294 IQR (CV) : 561 (1.6) |
150 distinct values | 93805 (78.0%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. IOP Publishing [ 1180 others ] |
36273 (30.2%) 12328 (10.3%) 8751 ( 7.3%) 7954 ( 6.6%) 7314 ( 6.1%) 3478 ( 2.9%) 2594 ( 2.2%) 2184 ( 1.8%) 1967 ( 1.6%) 1924 ( 1.6%) 35462 (29.5%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. IOP Publishing [ 1179 others ] |
36273 (30.2%) 12328 (10.3%) 9334 ( 7.8%) 7954 ( 6.6%) 7314 ( 6.1%) 3478 ( 2.9%) 2594 ( 2.2%) 2184 ( 1.8%) 1967 ( 1.6%) 1924 ( 1.6%) 34879 (29.0%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. hal-01258392 3. hal-01503066 4. 10.1.1.689.4829 5. cea-01383759 6. dumas-01128379 7. ebg 8. hal-00717572 9. hal-00769968 10. hal-01023543 [ 16955 others ] |
71 ( 0.4%) 3 ( 0.0%) 3 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 17012 (99.5%) |
103126 (85.8%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
47374 (39.4%) 72855 (60.6%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
All NA’s | 120229 (100.0%) |
||
| 18 | part_APC_paid_by_authors [character] |
All NA’s | 120229 (100.0%) |
||
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
36273 (30.2%) 22290 (18.5%) 40303 (33.5%) 21363 (17.8%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
5595 ( 4.8%) 10800 ( 9.3%) 46997 (40.4%) 52970 (45.5%) |
3867 (3.2%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
5727 (31.4%) 12494 (68.6%) |
102008 (84.8%) |
|
| 22 | corresponding [logical] |
1. TRUE | 3419 (100.0%) | 116810 (97.2%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 11 (106.6) min < med < max: 1 < 4 < 5156 IQR (CV) : 5 (9.7) |
396 distinct values | 220 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
67757 (56.5%) 52252 (43.5%) |
220 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 4.9 (68.1) min < med < max: 0 < 1 < 2900 IQR (CV) : 4 (13.8) |
286 distinct values | 220 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
26918 (51.4%) 25464 (48.6%) |
67847 (56.4%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
2780 ( 4.8%) 55157 (95.2%) |
62292 (51.8%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
60023 (50.3%) 59289 (49.7%) |
917 (0.8%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
103922 (87.1%) 15390 (12.9%) |
917 (0.8%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
101016 (84.7%) 18296 (15.3%) |
917 (0.8%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
60023 (50.3%) 16335 (13.7%) 24722 (20.7%) 18232 (15.3%) |
917 (0.8%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
2497 ( 2.1%) 10836 ( 9.1%) 8183 ( 6.9%) 3206 ( 2.7%) 60023 (50.3%) 2699 ( 2.3%) 1348 ( 1.1%) 18232 (15.3%) 6789 ( 5.7%) 5499 ( 4.6%) |
917 (0.8%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
60023 (50.3%) 5196 ( 4.4%) 12184 (10.2%) 18232 (15.3%) 14972 (12.5%) 8705 ( 7.3%) |
917 (0.8%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-sa”) 3. cc-by 4. cc-by-nc 5. cc-by-nc-nd 6. cc-by-nc-sa 7. cc-by-nd 8. cc-by-sa 9. no license 10. other |
7 ( 0.0%) 1 ( 0.0%) 13274 (32.3%) 2124 ( 5.2%) 5018 (12.2%) 496 ( 1.2%) 31 ( 0.1%) 103 ( 0.3%) 19060 (46.4%) 943 ( 2.3%) |
79172 (65.9%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 23895 (34.5%) 1 : 45389 (65.5%) |
50945 (42.4%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 41301 (59.6%) 1 : 27983 (40.4%) |
50945 (42.4%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 4302 (52.7%) 1 : 3864 (47.3%) |
112063 (93.2%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
5196 ( 4.4%) 12184 (10.2%) 14972 (12.5%) 86960 (72.9%) |
917 (0.8%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
11369 (41.3%) 34 ( 0.1%) 12156 (44.1%) 77 ( 0.3%) 3924 (14.2%) |
92669 (77.1%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 11480 (41.7%) 1 : 16080 (58.3%) |
92669 (77.1%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
809 ( 0.8%) 24359 (25.0%) 72302 (74.2%) |
22759 (18.9%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 30293 (35.7%) 1 : 54592 (64.3%) |
35344 (29.4%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 30293 (30.0%) 1 : 70530 (70.0%) |
19406 (16.1%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 34595 (31.7%) 1 : 74394 (68.3%) |
11240 (9.3%) |
global_stats(bso_2016)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
19595 (15.2%) 7274 ( 5.6%) 4755 ( 3.7%) 9589 ( 7.4%) 3372 ( 2.6%) 11415 ( 8.8%) 3280 ( 2.5%) 45792 (35.4%) 15845 (12.3%) 8403 ( 6.5%) 2 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. The authors declare no co 3. Conflicts of Interest: No 4. The authors declare that 5. Competing interests: None 6. The authors declare no co 7. The authors have no confl 8. The authors have no confl 9. The authors declare no co 10. The authors declare that [ 683 others ] |
356 (20.7%) 228 (13.3%) 54 ( 3.1%) 33 ( 1.9%) 31 ( 1.8%) 30 ( 1.7%) 27 ( 1.6%) 22 ( 1.3%) 21 ( 1.2%) 20 ( 1.2%) 896 (52.2%) |
127604 (98.7%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“de”, “fr”) 5. c(“gb”, “fr”) 6. c(“fr”, “gb”) 7. c(“ca”, “fr”) 8. c(“it”, “fr”) 9. c(“fr”, “it”) 10. c(“ch”, “fr”) [ 8836 others ] |
27588 (50.9%) 1283 ( 2.4%) 740 ( 1.4%) 725 ( 1.3%) 552 ( 1.0%) 532 ( 1.0%) 524 ( 1.0%) 508 ( 0.9%) 458 ( 0.8%) 405 ( 0.7%) 20880 (38.5%) |
75127 (58.1%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. pt 5. it 6. de 7. ja 8. nl 9. ru 10. pl [ 32 others ] |
100220 (77.5%) 26975 (20.9%) 765 ( 0.6%) 310 ( 0.2%) 297 ( 0.2%) 286 ( 0.2%) 183 ( 0.1%) 35 ( 0.0%) 33 ( 0.0%) 32 ( 0.0%) 115 ( 0.1%) |
71 (0.1%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Comptes rendus 5. Présentation 6. Avant-propos 7. Reply 8. Preface 9. Lu pour vous 10. Planck2015 results [ 127664 others ] |
185 ( 0.1%) 116 ( 0.1%) 81 ( 0.1%) 66 ( 0.1%) 62 ( 0.0%) 49 ( 0.0%) 42 ( 0.0%) 32 ( 0.0%) 30 ( 0.0%) 28 ( 0.0%) 128624 (99.5%) |
7 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
88593 (73.0%) 32760 (27.0%) |
7969 (6.2%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1803.9 (1115.5) min < med < max: 0 < 1873.6 < 6848.7 IQR (CV) : 1471.7 (0.6) |
2537 distinct values | 90320 (69.8%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
6900 (17.7%) 1159 ( 3.0%) 10656 (27.3%) 11315 (29.0%) 101 ( 0.3%) 8887 (22.8%) |
90304 (69.8%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1345.3 (1201) min < med < max: 0 < 1575.4 < 5352.6 IQR (CV) : 2140 (0.9) |
4798 distinct values | 110797 (85.7%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 1678.4 (13623.9) min < med < max: 0 < 1675 < 1e+06 IQR (CV) : 2100 (8.1) |
247 distinct values | 110781 (85.7%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2146.3 (859.1) min < med < max: 2.3 < 2018.6 < 6848.7 IQR (CV) : 1334.4 (0.4) |
2349 distinct values | 96294 (74.5%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 722.6 (1165.1) min < med < max: 10 < 47 < 3719 IQR (CV) : 931 (1.6) |
139 distinct values | 97456 (75.4%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1449 others ] |
38749 (30.0%) 13122 (10.1%) 8980 ( 6.9%) 7889 ( 6.1%) 7589 ( 5.9%) 3795 ( 2.9%) 3736 ( 2.9%) 2345 ( 1.8%) 2207 ( 1.7%) 2094 ( 1.6%) 38816 (30.0%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1448 others ] |
38749 (30.0%) 13122 (10.1%) 9607 ( 7.4%) 7889 ( 6.1%) 7589 ( 5.9%) 3795 ( 2.9%) 3736 ( 2.9%) 2345 ( 1.8%) 2207 ( 1.7%) 2094 ( 1.6%) 38189 (29.5%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. hal-01302480 3. halshs-01270808 4. 341160 5. ebg 6. hal-01254689 7. hal-01279121 8. hal-01285900 9. hal-01295641 10. hal-01296781 [ 19553 others ] |
61 ( 0.3%) 3 ( 0.0%) 3 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 19640 (99.6%) |
109601 (84.8%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
52785 (40.8%) 76537 (59.2%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
1. TRUE | 14 (100.0%) | 129308 (100.0%) |
|
| 18 | part_APC_paid_by_authors [character] |
1. FALSE | 14 (100.0%) | 129308 (100.0%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
38749 (30.0%) 23661 (18.3%) 43071 (33.3%) 23841 (18.4%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6258 ( 5.0%) 12283 ( 9.8%) 53528 (42.8%) 53001 (42.4%) |
4252 (3.3%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
6419 (31.6%) 13870 (68.4%) |
109033 (84.3%) |
|
| 22 | corresponding [logical] |
1. TRUE | 6346 (100.0%) | 122976 (95.1%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 12 (113.8) min < med < max: 1 < 5 < 5112 IQR (CV) : 6 (9.5) |
445 distinct values | 302 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
67248 (52.1%) 61772 (47.9%) |
302 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 5.4 (75.5) min < med < max: 0 < 1 < 2887 IQR (CV) : 4 (14) |
349 distinct values | 302 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
32896 (53.1%) 29006 (46.9%) |
67420 (52.1%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
3617 ( 5.5%) 62154 (94.5%) |
63551 (49.1%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
61753 (48.1%) 66726 (51.9%) |
843 (0.7%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
111199 (86.6%) 17280 (13.4%) |
843 (0.7%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
108180 (84.2%) 20299 (15.8%) |
843 (0.7%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
61753 (48.1%) 18193 (14.2%) 27942 (21.7%) 20591 (16.0%) |
843 (0.7%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
3003 ( 2.3%) 12041 ( 9.4%) 9281 ( 7.2%) 3617 ( 2.8%) 61753 (48.1%) 2655 ( 2.1%) 1481 ( 1.2%) 20591 (16.0%) 8285 ( 6.4%) 5772 ( 4.5%) |
843 (0.7%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
61753 (48.1%) 5658 ( 4.4%) 13522 (10.5%) 20591 (16.0%) 17566 (13.7%) 9389 ( 7.3%) |
843 (0.7%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. c(“cc-by-nc”, “cc-by-sa”) 4. cc-by 5. cc-by-nc 6. cc-by-nc-nd 7. cc-by-nc-sa 8. cc-by-nd 9. cc-by-sa 10. no license 11. other |
7 ( 0.0%) 1 ( 0.0%) 1 ( 0.0%) 15492 (33.6%) 2498 ( 5.4%) 6234 (13.5%) 523 ( 1.1%) 45 ( 0.1%) 114 ( 0.2%) 20226 (43.8%) 994 ( 2.2%) |
83187 (64.3%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 27064 (34.8%) 1 : 50784 (65.2%) |
51474 (39.8%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 43861 (56.3%) 1 : 33987 (43.7%) |
51474 (39.8%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 4364 (57.4%) 1 : 3245 (42.6%) |
121713 (94.1%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
5658 ( 4.4%) 13522 (10.5%) 17566 (13.7%) 91733 (71.4%) |
843 (0.7%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
13146 (41.2%) 47 ( 0.1%) 13578 (42.6%) 81 ( 0.3%) 5025 (15.8%) |
97445 (75.4%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 13274 (41.6%) 1 : 18603 (58.4%) |
97445 (75.4%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
931 ( 0.9%) 26258 (24.9%) 78379 (74.2%) |
23754 (18.4%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 34309 (36.6%) 1 : 59433 (63.4%) |
35580 (27.5%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 34309 (31.2%) 1 : 75569 (68.8%) |
19444 (15.0%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 38673 (32.9%) 1 : 78814 (67.1%) |
11835 (9.2%) |
global_stats(bso_2017)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
19605 (15.0%) 6731 ( 5.1%) 5256 ( 4.0%) 10295 ( 7.9%) 3513 ( 2.7%) 11558 ( 8.8%) 3221 ( 2.5%) 45892 (35.0%) 16088 (12.3%) 8787 ( 6.7%) 2 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors declare no co 2. Competing interests: None 3. The authors have declared 4. Competing interestsThe au 5. The authors declare no co 6. Disclosure The authors re 7. Conflicts of Interest: Th 8. The authors declare there 9. Conflict of interest: Dis 10. The authors declare no co [ 839 others ] |
543 (20.0%) 267 ( 9.8%) 144 ( 5.3%) 94 ( 3.5%) 83 ( 3.1%) 74 ( 2.7%) 61 ( 2.2%) 47 ( 1.7%) 39 ( 1.4%) 37 ( 1.4%) 1332 (49.0%) |
128227 (97.9%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“de”, “fr”) 5. c(“it”, “fr”) 6. c(“fr”, “it”) 7. c(“fr”, “cn”) 8. c(“fr”, “gb”) 9. c(“gb”, “fr”) 10. c(“es”, “fr”) [ 13741 others ] |
40405 (47.0%) 1847 ( 2.1%) 1076 ( 1.3%) 1009 ( 1.2%) 935 ( 1.1%) 858 ( 1.0%) 853 ( 1.0%) 790 ( 0.9%) 717 ( 0.8%) 684 ( 0.8%) 36832 (42.8%) |
44942 (34.3%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. it 6. pt 7. ja 8. ru 9. pl 10. nl [ 33 others ] |
102703 (78.5%) 26115 (19.9%) 794 ( 0.6%) 329 ( 0.3%) 297 ( 0.2%) 276 ( 0.2%) 110 ( 0.1%) 61 ( 0.0%) 31 ( 0.0%) 28 ( 0.0%) 159 ( 0.1%) |
45 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Présentation 5. Lu pour vous 6. Reply 7. Avant-propos 8. Preface 9. Foreword 10. Lu, vu, entendu [ 129318 others ] |
191 ( 0.1%) 119 ( 0.1%) 71 ( 0.1%) 53 ( 0.0%) 42 ( 0.0%) 39 ( 0.0%) 38 ( 0.0%) 29 ( 0.0%) 24 ( 0.0%) 23 ( 0.0%) 130316 (99.5%) |
3 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
89208 (72.6%) 33627 (27.4%) |
8113 (6.2%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1765.3 (1129.1) min < med < max: 0 < 1839.6 < 9848.4 IQR (CV) : 1502.9 (0.6) |
3619 distinct values | 90478 (69.1%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis |
7515 (18.6%) 3702 ( 9.1%) 8312 (20.5%) 12059 (29.8%) 8893 (22.0%) |
90467 (69.1%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1317.6 (1153.4) min < med < max: 0 < 1559 < 5021.3 IQR (CV) : 2076.6 (0.9) |
5311 distinct values | 110346 (84.3%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 1679.8 (12209) min < med < max: 0 < 1675 < 9e+05 IQR (CV) : 2200 (7.3) |
253 distinct values | 110335 (84.3%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2129.8 (859.8) min < med < max: 30.9 < 1998.2 < 9848.4 IQR (CV) : 1349.1 (0.4) |
3415 distinct values | 96755 (73.9%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 1006.1 (1624.2) min < med < max: 10 < 51 < 5155 IQR (CV) : 1456 (1.6) |
136 distinct values | 100461 (76.7%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. CAIRN 5. OpenEdition 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1541 others ] |
39044 (29.8%) 13828 (10.6%) 9181 ( 7.0%) 7775 ( 5.9%) 7748 ( 5.9%) 3695 ( 2.8%) 3612 ( 2.8%) 2374 ( 1.8%) 2273 ( 1.7%) 2206 ( 1.7%) 39212 (29.9%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. CAIRN 5. OpenEdition 6. Informa 7. Oxford University Press 8. American Chemical Society 9. EDP Sciences 10. American Physical Society [ 1540 others ] |
39044 (29.8%) 13828 (10.6%) 9828 ( 7.5%) 7775 ( 5.9%) 7748 ( 5.9%) 3695 ( 2.8%) 3612 ( 2.8%) 2374 ( 1.8%) 2273 ( 1.7%) 2206 ( 1.7%) 38565 (29.5%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. 20.500.12210/34846 3. 410759 4. cea-01515489 5. cea-01534297 6. cea-01542961 7. cea-01794118 8. cea-02341588 9. hal-01081953 10. hal-01155711 [ 21933 others ] |
73 ( 0.3%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 22046 (99.6%) |
108811 (83.1%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
54240 (41.4%) 76708 (58.6%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
1. 1 | 608 (100.0%) | 130340 (99.5%) |
|
| 18 | part_APC_paid_by_authors [character] |
1. 0 | 608 (100.0%) | 130340 (99.5%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
39044 (29.8%) 25195 (19.2%) 42956 (32.8%) 23753 (18.1%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6854 ( 5.4%) 13759 (10.9%) 54764 (43.3%) 51052 (40.4%) |
4519 (3.5%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
6970 (31.4%) 15201 (68.6%) |
108777 (83.1%) |
|
| 22 | corresponding [logical] |
1. TRUE | 23216 (100.0%) | 107732 (82.3%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 11.7 (107.4) min < med < max: 1 < 5 < 3664 IQR (CV) : 6 (9.1) |
462 distinct values | 295 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
42967 (32.9%) 87686 (67.1%) |
295 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 3.5 (62.5) min < med < max: 0 < 0 < 3664 IQR (CV) : 1 (17.8) |
293 distinct values | 295 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
45118 (51.0%) 43284 (49.0%) |
42546 (32.5%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
3280 ( 3.5%) 89844 (96.5%) |
37824 (28.9%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
60258 (46.6%) 69144 (53.4%) |
1546 (1.2%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
109923 (84.9%) 19479 (15.1%) |
1546 (1.2%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
105738 (81.7%) 23664 (18.3%) |
1546 (1.2%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
60258 (46.6%) 17901 (13.8%) 28926 (22.4%) 22317 (17.2%) |
1546 (1.2%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
3370 ( 2.6%) 13814 (10.7%) 8339 ( 6.4%) 3403 ( 2.6%) 60258 (46.6%) 2928 ( 2.3%) 1931 ( 1.5%) 22317 (17.2%) 7400 ( 5.7%) 5642 ( 4.4%) |
1546 (1.2%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
60258 (46.6%) 6298 ( 4.9%) 15745 (12.2%) 22317 (17.2%) 15739 (12.2%) 9045 ( 7.0%) |
1546 (1.2%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. c(“cc-by-nc”, “cc-by-sa”) 4. cc-by 5. cc-by-nc 6. cc-by-nc-nd 7. cc-by-nc-sa 8. cc-by-nd 9. cc-by-sa 10. no license 11. other |
7 ( 0.0%) 5 ( 0.0%) 1 ( 0.0%) 17517 (37.4%) 2567 ( 5.5%) 6711 (14.3%) 630 ( 1.3%) 113 ( 0.2%) 131 ( 0.3%) 18004 (38.4%) 1141 ( 2.4%) |
84121 (64.2%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 28964 (36.1%) 1 : 51159 (63.9%) |
50825 (38.8%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 43904 (54.8%) 1 : 36219 (45.2%) |
50825 (38.8%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 2385 (58.5%) 1 : 1695 (41.5%) |
126868 (96.9%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6298 ( 4.9%) 15745 (12.2%) 15739 (12.2%) 91620 (70.8%) |
1546 (1.2%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
11711 (35.7%) 51 ( 0.2%) 15661 (47.8%) 117 ( 0.4%) 5246 (16.0%) |
98162 (75.0%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 11879 (36.2%) 1 : 20907 (63.8%) |
98162 (75.0%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
988 ( 0.9%) 28216 (26.4%) 77576 (72.7%) |
24168 (18.5%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 38518 (38.1%) 1 : 62540 (61.9%) |
29890 (22.8%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 38518 (33.0%) 1 : 78069 (67.0%) |
14361 (11.0%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 40903 (33.9%) 1 : 79764 (66.1%) |
10281 (7.9%) |
global_stats(bso_2018)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
20331 (14.9%) 6645 ( 4.9%) 5452 ( 4.0%) 11080 ( 8.1%) 3658 ( 2.7%) 11847 ( 8.7%) 3487 ( 2.6%) 49168 (36.0%) 15704 (11.5%) 9128 ( 6.7%) 6 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. The authors declare no co 3. Competing interests: None 4. Competing interestsThe au 5. Disclosure The authors re 6. The authors declare no co 7. Conflicts of Interest: Th 8. The authors declare no co 9. The authors declare that 10. CONFLICTS OF INTEREST The [ 1239 others ] |
556 (15.4%) 437 (12.1%) 318 ( 8.8%) 103 ( 2.9%) 91 ( 2.5%) 91 ( 2.5%) 77 ( 2.1%) 41 ( 1.1%) 37 ( 1.0%) 34 ( 0.9%) 1826 (50.6%) |
132895 (97.4%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“de”, “fr”) 4. c(“fr”, “us”) 5. c(“fr”, “cn”) 6. c(“it”, “fr”) 7. c(“fr”, “it”) 8. c(“fr”, “gb”) 9. c(“gb”, “fr”) 10. c(“es”, “fr”) [ 15197 others ] |
39846 (45.4%) 1878 ( 2.1%) 1053 ( 1.2%) 1019 ( 1.2%) 968 ( 1.1%) 950 ( 1.1%) 894 ( 1.0%) 783 ( 0.9%) 783 ( 0.9%) 729 ( 0.8%) 38940 (44.3%) |
48663 (35.6%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. it 5. pt 6. de 7. ja 8. pl 9. ru 10. ca [ 36 others ] |
107375 (78.7%) 26734 (19.6%) 909 ( 0.7%) 319 ( 0.2%) 315 ( 0.2%) 313 ( 0.2%) 82 ( 0.1%) 74 ( 0.1%) 74 ( 0.1%) 30 ( 0.0%) 225 ( 0.2%) |
56 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Présentation 4. Editorial 5. Avant-propos 6. Preface 7. Lu, vu, entendu 8. Foreword 9. Reply 10. The XXL Survey [ 134646 others ] |
186 ( 0.1%) 111 ( 0.1%) 64 ( 0.0%) 57 ( 0.0%) 40 ( 0.0%) 35 ( 0.0%) 28 ( 0.0%) 27 ( 0.0%) 22 ( 0.0%) 20 ( 0.0%) 135903 (99.6%) |
13 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
90584 (71.6%) 35843 (28.4%) |
10079 (7.4%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1787.6 (1150.1) min < med < max: 0 < 1835.2 < 7140 IQR (CV) : 1549.2 (0.6) |
3655 distinct values | 93636 (68.6%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis |
7821 (18.2%) 2710 ( 6.3%) 9400 (21.9%) 13917 (32.5%) 9033 (21.1%) |
93625 (68.6%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1361.5 (1141.3) min < med < max: 0 < 1558.2 < 6174.6 IQR (CV) : 2087.6 (0.8) |
6254 distinct values | 113466 (83.1%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 14766.1 (1140817) min < med < max: 0 < 1749 < 1e+08 IQR (CV) : 2390 (77.3) |
280 distinct values | 113455 (83.1%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2144.3 (897.1) min < med < max: 26 < 2018.6 < 7140 IQR (CV) : 1262.2 (0.4) |
3423 distinct values | 100229 (73.4%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 826.3 (1418.9) min < med < max: 10 < 52 < 4539 IQR (CV) : 872 (1.7) |
127 distinct values | 102951 (75.4%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Oxford University Press 7. Informa 8. MDPI 9. American Chemical Society 10. EDP Sciences [ 1937 others ] |
40340 (29.6%) 14141 (10.4%) 8796 ( 6.4%) 7808 ( 5.7%) 7551 ( 5.5%) 4117 ( 3.0%) 3462 ( 2.5%) 2598 ( 1.9%) 2553 ( 1.9%) 2323 ( 1.7%) 42817 (31.4%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Oxford University Press 7. Informa 8. MDPI 9. American Chemical Society 10. EDP Sciences [ 1936 others ] |
40340 (29.6%) 14141 (10.4%) 9490 ( 7.0%) 7808 ( 5.7%) 7551 ( 5.5%) 4117 ( 3.0%) 3462 ( 2.5%) 2598 ( 1.9%) 2553 ( 1.9%) 2323 ( 1.7%) 42123 (30.9%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. ebg 3. hal-02331607 4. hal-02341803 5. halshs-01760347 6. inserm-01857762 7. cea-01700617 8. cea-01772739 9. cea-01818428 10. cea-02437051 [ 24489 others ] |
56 ( 0.2%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 24600 (99.7%) |
111827 (81.9%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
59462 (43.6%) 77044 (56.4%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
1. TRUE | 46 (100.0%) | 136460 (100.0%) |
|
| 18 | part_APC_paid_by_authors [character] |
1. FALSE | 46 (100.0%) | 136460 (100.0%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
40340 (29.6%) 26229 (19.2%) 43419 (31.8%) 26518 (19.4%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
7038 ( 5.4%) 16013 (12.3%) 57184 (43.8%) 50318 (38.5%) |
5953 (4.4%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
7177 (29.2%) 17368 (70.8%) |
111961 (82.0%) |
|
| 22 | corresponding [logical] |
1. TRUE | 23435 (100.0%) | 113071 (82.8%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 12.3 (115.9) min < med < max: 1 < 5 < 5098 IQR (CV) : 6 (9.4) |
462 distinct values | 290 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
45468 (33.4%) 90748 (66.6%) |
290 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 3.6 (69.5) min < med < max: 0 < 0 < 2935 IQR (CV) : 1 (19.4) |
282 distinct values | 290 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
48424 (52.9%) 43096 (47.1%) |
44986 (33.0%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
3546 ( 3.7%) 92328 (96.3%) |
40632 (29.8%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
60768 (45.1%) 74039 (54.9%) |
1699 (1.2%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
112957 (83.8%) 21850 (16.2%) |
1699 (1.2%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
108301 (80.3%) 26506 (19.7%) |
1699 (1.2%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
60768 (45.1%) 19968 (14.8%) 30968 (23.0%) 23103 (17.1%) |
1699 (1.2%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
3269 ( 2.4%) 15447 (11.5%) 8462 ( 6.3%) 3790 ( 2.8%) 60768 (45.1%) 3183 ( 2.4%) 1764 ( 1.3%) 23103 (17.1%) 7926 ( 5.9%) 7095 ( 5.3%) |
1699 (1.2%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
60768 (45.1%) 6452 ( 4.8%) 17211 (12.8%) 23103 (17.1%) 16388 (12.2%) 10885 ( 8.1%) |
1699 (1.2%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. cc-by 4. cc-by-nc 5. cc-by-nc-nd 6. cc-by-nc-sa 7. cc-by-nd 8. cc-by-sa 9. no license 10. other |
20 ( 0.0%) 2 ( 0.0%) 20315 (39.9%) 2878 ( 5.7%) 6573 (12.9%) 612 ( 1.2%) 107 ( 0.2%) 264 ( 0.5%) 19154 (37.6%) 1011 ( 2.0%) |
85570 (62.7%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 30789 (37.5%) 1 : 51307 (62.5%) |
54410 (39.9%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 43575 (53.1%) 1 : 38521 (46.9%) |
54410 (39.9%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 2295 (59.7%) 1 : 1552 (40.3%) |
132659 (97.2%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6452 ( 4.8%) 17211 (12.8%) 16388 (12.2%) 94756 (70.3%) |
1699 (1.2%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
11592 (33.3%) 48 ( 0.1%) 17094 (49.1%) 79 ( 0.2%) 5998 (17.2%) |
101695 (74.5%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 11719 (33.7%) 1 : 23092 (66.3%) |
101695 (74.5%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
1260 ( 1.1%) 30124 (27.0%) 80082 (71.8%) |
25040 (18.3%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 41838 (39.9%) 1 : 62958 (60.1%) |
31710 (23.2%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 41838 (34.5%) 1 : 79298 (65.5%) |
15370 (11.3%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 44133 (35.3%) 1 : 80850 (64.7%) |
11523 (8.4%) |
global_stats(bso_2019)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
20870 (15.2%) 6518 ( 4.7%) 5449 ( 4.0%) 11256 ( 8.2%) 3572 ( 2.6%) 11115 ( 8.1%) 3592 ( 2.6%) 50676 (36.9%) 15476 (11.3%) 8800 ( 6.4%) 3 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. The authors declare no co 3. Competing interests: None 4. None declared. 5. Competing interestsThe au 6. The authors declare no co 7. Competing interestsThe au 8. The authors declare no co 9. Conflicts of Interest: Th 10. None [ 1470 others ] |
790 (17.4%) 469 (10.3%) 370 ( 8.2%) 132 ( 2.9%) 118 ( 2.6%) 99 ( 2.2%) 80 ( 1.8%) 69 ( 1.5%) 60 ( 1.3%) 58 ( 1.3%) 2290 (50.5%) |
132792 (96.7%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“fr”, “cn”) 5. c(“de”, “fr”) 6. c(“it”, “fr”) 7. c(“fr”, “it”) 8. c(“cn”, “fr”) 9. c(“fr”, “gb”) 10. c(“fr”, “ca”) [ 16935 others ] |
43966 (45.4%) 2124 ( 2.2%) 1196 ( 1.2%) 1064 ( 1.1%) 1047 ( 1.1%) 1045 ( 1.1%) 942 ( 1.0%) 882 ( 0.9%) 880 ( 0.9%) 759 ( 0.8%) 42880 (44.3%) |
40542 (29.5%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. pt 6. it 7. ja 8. ru 9. pl 10. lb [ 37 others ] |
110939 (80.8%) 24051 (17.5%) 840 ( 0.6%) 323 ( 0.2%) 299 ( 0.2%) 286 ( 0.2%) 122 ( 0.1%) 73 ( 0.1%) 71 ( 0.1%) 32 ( 0.0%) 243 ( 0.2%) |
48 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Présentation 5. Avant-propos 6. Lu, vu, entendu 7. Lu pour vous 8. Preface 9. Reply 10. Notes de lecture [ 135669 others ] |
203 ( 0.1%) 109 ( 0.1%) 67 ( 0.0%) 64 ( 0.0%) 42 ( 0.0%) 32 ( 0.0%) 30 ( 0.0%) 30 ( 0.0%) 29 ( 0.0%) 21 ( 0.0%) 136695 (99.5%) |
5 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
81938 (64.2%) 45751 (35.8%) |
9638 (7.0%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1849.5 (1039.2) min < med < max: 0 < 2031.8 < 13975 IQR (CV) : 1120.2 (0.6) |
3756 distinct values | 84521 (61.5%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis |
7872 (14.9%) 2829 ( 5.4%) 15420 (29.2%) 13210 (25.0%) 13483 (25.5%) |
84513 (61.5%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1487.6 (1140.9) min < med < max: 0 < 1743.2 < 4851.3 IQR (CV) : 2187.3 (0.8) |
6983 distinct values | 110862 (80.7%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 2304.2 (46950.2) min < med < max: 0 < 1785 < 5e+06 IQR (CV) : 2400 (20.4) |
261 distinct values | 110854 (80.7%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2138.9 (785.6) min < med < max: 10.7 < 2181.2 < 13975 IQR (CV) : 835.4 (0.4) |
3500 distinct values | 91179 (66.4%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 691.9 (1069.9) min < med < max: 10 < 66 < 3721 IQR (CV) : 1042 (1.5) |
143 distinct values | 94018 (68.5%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Oxford University Press 7. MDPI 8. Informa 9. American Chemical Society 10. Frontiers [ 2046 others ] |
38733 (28.2%) 14572 (10.6%) 9275 ( 6.8%) 7355 ( 5.4%) 6927 ( 5.0%) 4375 ( 3.2%) 4183 ( 3.0%) 3899 ( 2.8%) 2606 ( 1.9%) 2236 ( 1.6%) 43166 (31.4%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Oxford University Press 7. MDPI 8. Informa 9. American Chemical Society 10. Frontiers [ 2045 others ] |
38733 (28.2%) 14572 (10.6%) 10024 ( 7.3%) 7355 ( 5.4%) 6927 ( 5.0%) 4375 ( 3.2%) 4183 ( 3.0%) 3899 ( 2.8%) 2606 ( 1.9%) 2236 ( 1.6%) 42417 (30.9%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. ebg 3. hal-02146428 4. hal-02431782 5. halshs-01978269 6. cea-02075752 7. cea-02145076 8. cea-02265800 9. cea-02482250 10. hal-01644582 [ 30683 others ] |
51 ( 0.2%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 30852 (99.8%) |
106402 (77.5%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
62448 (45.5%) 74879 (54.5%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
All NA’s | 137327 (100.0%) |
||
| 18 | part_APC_paid_by_authors [character] |
All NA’s | 137327 (100.0%) |
||
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
38733 (28.2%) 28779 (21.0%) 43186 (31.4%) 26629 (19.4%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
7063 ( 5.4%) 19410 (14.8%) 68690 (52.5%) 35698 (27.3%) |
6466 (4.7%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
7177 (25.8%) 20659 (74.2%) |
109491 (79.7%) |
|
| 22 | corresponding [logical] |
1. TRUE | 27330 (100.0%) | 109997 (80.1%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 11.8 (106.6) min < med < max: 1 < 5 < 3446 IQR (CV) : 6 (9) |
437 distinct values | 283 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
38863 (28.4%) 98181 (71.6%) |
283 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 3.3 (66.8) min < med < max: 0 < 0 < 3446 IQR (CV) : 1 (20.4) |
276 distinct values | 283 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
52114 (52.7%) 46812 (47.3%) |
38401 (28.0%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
3183 ( 3.1%) 100177 (96.9%) |
33967 (24.7%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
60893 (45.0%) 74429 (55.0%) |
2005 (1.5%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
110183 (81.4%) 25139 (18.6%) |
2005 (1.5%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
105268 (77.8%) 30054 (22.2%) |
2005 (1.5%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
60893 (45.0%) 21630 (16.0%) 31760 (23.5%) 21039 (15.5%) |
2005 (1.5%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
2829 ( 2.1%) 17613 (13.0%) 7826 ( 5.8%) 3492 ( 2.6%) 60893 (45.0%) 3507 ( 2.6%) 2768 ( 2.0%) 21039 (15.5%) 7267 ( 5.4%) 8088 ( 6.0%) |
2005 (1.5%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
60893 (45.0%) 6336 ( 4.7%) 20381 (15.1%) 21039 (15.5%) 15093 (11.2%) 11580 ( 8.6%) |
2005 (1.5%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-sa”) 3. cc-by 4. cc-by-nc 5. cc-by-nc-nd 6. cc-by-nc-sa 7. cc-by-nd 8. cc-by-sa 9. no license 10. other |
25 ( 0.0%) 2 ( 0.0%) 23432 (43.9%) 3306 ( 6.2%) 7977 (14.9%) 626 ( 1.2%) 92 ( 0.2%) 242 ( 0.5%) 16981 (31.8%) 707 ( 1.3%) |
83937 (61.1%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 32567 (38.7%) 1 : 51495 (61.3%) |
53265 (38.8%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 43451 (51.7%) 1 : 40611 (48.3%) |
53265 (38.8%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.3 Max : 1 |
0 : 1948 (66.3%) 1 : 988 (33.7%) |
134391 (97.9%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6336 ( 4.7%) 20381 (15.1%) 15093 (11.2%) 93512 (69.1%) |
2005 (1.5%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
16736 (37.6%) 274 ( 0.6%) 20246 (45.5%) 127 ( 0.3%) 7119 (16.0%) |
92825 (67.6%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 17137 (38.5%) 1 : 27365 (61.5%) |
92825 (67.6%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
1448 ( 1.3%) 32405 (28.6%) 79548 (70.1%) |
23926 (17.4%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 45338 (40.5%) 1 : 66728 (59.5%) |
25261 (18.4%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 45338 (36.6%) 1 : 78613 (63.4%) |
13376 (9.7%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 47286 (37.3%) 1 : 79601 (62.7%) |
10440 (7.6%) |
global_stats(bso_2020)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
23047 (16.3%) 7108 ( 5.0%) 5755 ( 4.1%) 12094 ( 8.5%) 3738 ( 2.6%) 8246 ( 5.8%) 3393 ( 2.4%) 55056 (38.9%) 15723 (11.1%) 7419 ( 5.2%) 2 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. Declaration of Competing 3. Declaration of competing 4. Competing interests: None 5. The authors declare no co 6. The authors declare no co 7. Declaration of Interests 8. The authors declare that 9. Declaration of Competing 10. The authors declare no co [ 3499 others ] |
758 ( 7.9%) 611 ( 6.4%) 498 ( 5.2%) 445 ( 4.6%) 400 ( 4.2%) 264 ( 2.8%) 239 ( 2.5%) 162 ( 1.7%) 156 ( 1.6%) 138 ( 1.4%) 5905 (61.7%) |
132005 (93.2%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“us”, “fr”) 3. c(“fr”, “us”) 4. c(“it”, “fr”) 5. c(“fr”, “cn”) 6. c(“fr”, “gb”) 7. c(“fr”, “it”) 8. c(“de”, “fr”) 9. c(“cn”, “fr”) 10. c(“fr”, “de”) [ 19630 others ] |
45886 (44.2%) 2405 ( 2.3%) 1440 ( 1.4%) 1095 ( 1.1%) 1054 ( 1.0%) 1038 ( 1.0%) 975 ( 0.9%) 898 ( 0.9%) 859 ( 0.8%) 841 ( 0.8%) 47336 (45.6%) |
37754 (26.7%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. pt 6. it 7. ru 8. ja 9. pl 10. tr [ 34 others ] |
119868 (84.7%) 19563 (13.8%) 731 ( 0.5%) 346 ( 0.2%) 315 ( 0.2%) 234 ( 0.2%) 68 ( 0.0%) 58 ( 0.0%) 47 ( 0.0%) 46 ( 0.0%) 242 ( 0.2%) |
63 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Présentation 5. Reply 6. Preface 7. Avant-propos 8. Lu, vu, entendu 9. JAMA 10. Éléments de bibliographie [ 140175 others ] |
131 ( 0.1%) 83 ( 0.1%) 47 ( 0.0%) 30 ( 0.0%) 29 ( 0.0%) 26 ( 0.0%) 23 ( 0.0%) 23 ( 0.0%) 15 ( 0.0%) 14 ( 0.0%) 141158 (99.7%) |
2 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
78804 (59.2%) 54385 (40.8%) |
8392 (5.9%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1849.4 (946) min < med < max: 0 < 2042 < 6324 IQR (CV) : 795.3 (0.5) |
4041 distinct values | 80713 (57.0%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
7630 (12.5%) 3247 ( 5.3%) 17712 (29.1%) 16399 (26.9%) 12 ( 0.0%) 15878 (26.1%) |
80703 (57.0%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1604.1 (1068.3) min < med < max: 0 < 1816 < 4950 IQR (CV) : 1434 (0.7) |
7940 distinct values | 109839 (77.6%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 2292.3 (35592.8) min < med < max: 0 < 1990 < 6e+06 IQR (CV) : 1600 (15.5) |
300 distinct values | 109829 (77.6%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2079.9 (721.6) min < med < max: 11.6 < 2042 < 6324 IQR (CV) : 691.7 (0.3) |
3712 distinct values | 86931 (61.4%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 668.9 (1030.4) min < med < max: 10 < 91 < 5703 IQR (CV) : 916 (1.5) |
166 distinct values | 90187 (63.7%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. MDPI 5. OpenEdition 6. CAIRN 7. Oxford University Press 8. Informa 9. Frontiers 10. American Chemical Society [ 2005 others ] |
39521 (27.9%) 17343 (12.2%) 10746 ( 7.6%) 6933 ( 4.9%) 4747 ( 3.4%) 4470 ( 3.2%) 4384 ( 3.1%) 3856 ( 2.7%) 2957 ( 2.1%) 2675 ( 1.9%) 43949 (31.0%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. MDPI 5. OpenEdition 6. CAIRN 7. Oxford University Press 8. Informa 9. Frontiers 10. American Chemical Society [ 2004 others ] |
39521 (27.9%) 17343 (12.2%) 11460 ( 8.1%) 6933 ( 4.9%) 4747 ( 3.4%) 4470 ( 3.2%) 4384 ( 3.1%) 3856 ( 2.7%) 2957 ( 2.1%) 2675 ( 1.9%) 43235 (30.5%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. cea-02882575 3. hal-02988376 4. hal-02999762 5. hal-03028969 6. hal-03104077 7. halshs-02458140 8. cea-02524722 9. cea-02559737 10. cea-02559747 [ 31999 others ] |
40 ( 0.1%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 3 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 2 ( 0.0%) 32190 (99.8%) |
109327 (77.2%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
67386 (47.6%) 74195 (52.4%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
1. 0.25 | 315 (100.0%) | 141266 (99.8%) |
|
| 18 | part_APC_paid_by_authors [character] |
1. 0.75 | 315 (100.0%) | 141266 (99.8%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
39521 (27.9%) 35736 (25.2%) 40313 (28.5%) 26011 (18.4%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
6493 ( 4.8%) 25259 (18.5%) 77425 (56.7%) 27310 (20.0%) |
5094 (3.6%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
6629 (20.1%) 26388 (79.9%) |
108564 (76.7%) |
|
| 22 | corresponding [logical] |
1. TRUE | 26297 (100.0%) | 115284 (81.4%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 11.3 (94) min < med < max: 1 < 5 < 2965 IQR (CV) : 6 (8.3) |
428 distinct values | 546 (0.4%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
34332 (24.3%) 106703 (75.7%) |
546 (0.4%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 2.7 (54.9) min < med < max: 0 < 0 < 2957 IQR (CV) : 0 (20.4) |
264 distinct values | 546 (0.4%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
57897 (53.9%) 49529 (46.1%) |
34155 (24.1%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
3130 ( 2.8%) 108726 (97.2%) |
29725 (21.0%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
56768 (50.5%) 55686 (49.5%) |
29127 (20.6%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
90002 (80.0%) 22452 (20.0%) |
29127 (20.6%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
86728 (77.1%) 25726 (22.9%) |
29127 (20.6%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
56768 (50.5%) 20275 (18.0%) 23388 (20.8%) 12023 (10.7%) |
29127 (20.6%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
1453 ( 1.3%) 14188 (12.6%) 5742 ( 5.1%) 2005 ( 1.8%) 56768 (50.5%) 2622 ( 2.3%) 5324 ( 4.7%) 12023 (10.7%) 5691 ( 5.1%) 6638 ( 5.9%) |
29127 (20.6%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
56768 (50.5%) 4075 ( 3.6%) 19512 (17.4%) 12023 (10.7%) 11433 (10.2%) 8643 ( 7.7%) |
29127 (20.6%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. c(”cc-by-nc”, “cc-by-nd”) 3. cc-by 4. cc-by-nc 5. cc-by-nc-nd 6. cc-by-nc-sa 7. cc-by-nd 8. cc-by-sa 9. no license 10. other |
12 ( 0.0%) 1 ( 0.0%) 23147 (53.0%) 3036 ( 7.0%) 5744 (13.2%) 322 ( 0.7%) 102 ( 0.2%) 139 ( 0.3%) 10970 (25.1%) 190 ( 0.4%) |
97918 (69.2%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 38699 (41.2%) 1 : 55256 (58.8%) |
47626 (33.6%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 46328 (49.3%) 1 : 47627 (50.7%) |
47626 (33.6%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.3 Max : 1 |
0 : 2329 (72.1%) 1 : 903 (27.9%) |
138349 (97.7%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
4075 ( 3.6%) 19512 (17.4%) 11433 (10.2%) 77434 (68.9%) |
29127 (20.6%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
16144 (30.4%) 1242 ( 2.3%) 26011 (49.0%) 827 ( 1.6%) 8891 (16.7%) |
88466 (62.5%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 18213 (34.3%) 1 : 34902 (65.7%) |
88466 (62.5%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
1568 ( 1.3%) 35708 (29.3%) 84493 (69.4%) |
19812 (14.0%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 53026 (42.3%) 1 : 72258 (57.7%) |
16297 (11.5%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 53026 (40.5%) 1 : 78036 (59.5%) |
10519 (7.4%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 55355 (41.2%) 1 : 78939 (58.8%) |
7287 (5.1%) |
# Fonction pour la distribution des APC
distrib_apc <- function(data){
graph <- data %>% ggplot() +
aes(x = amount_apc_openapc_EUR) +
geom_histogram(bins = 30L, fill = "#112446", alpha = 0.9, col = "white") +
labs(x = "Montant des APC",
y = "Fréquence",
title = "Distribution du montant des APC") +
hrbrthemes::theme_ipsum()
ggplotly(graph)
}
# Fonction pour les 10 langues les plus utilisées dans les articles
top10_lang <- function(data){
# Table du nombre d'articles par langue
table <- data %>% group_by(lang) %>% filter(!is.na(lang)) %>% summarise(Freq = n())
table <- table %>% top_n(10, Freq)
# Graphique
graph <- table %>%
mutate(lang = fct_reorder(lang, Freq)) %>%
ggplot(aes(x = lang, y = Freq)) +
geom_bar(stat="identity", fill = "#112446") +
coord_flip() +
labs(
x = "Langue",
y = "Nombre d'articles",
title = "Les 10 langues les plus utilisées dans les articles",
) +
theme_ipsum()
ggplotly(graph)
}
distrib_apc(bso_2013)
top10_lang(bso_2013)
distrib_apc(bso_2014)
top10_lang(bso_2014)
distrib_apc(bso_2015)
top10_lang(bso_2015)
distrib_apc(bso_2016)
top10_lang(bso_2016)
distrib_apc(bso_2017)
top10_lang(bso_2017)
distrib_apc(bso_2018)
top10_lang(bso_2018)
distrib_apc(bso_2019)
top10_lang(bso_2019)
distrib_apc(bso_2020)
top10_lang(bso_2020)
# Import des données rassemblées
whole_bso <- read_csv("../data/4.process/managing-variables_2nd-part/whole_bso.csv", col_types = cols(author_position = "c"), na = c("", "NA"))
# Format factor variables
whole_bso[,c("has_apc", "tier", "is_covered_by_couperin", "is_complete_affiliation", "is_french_CA", "is_at_least_one_french_author2")] <- sapply(whole_bso[,c("has_apc", "tier", "is_covered_by_couperin", "is_complete_affiliation", "is_french_CA", "is_at_least_one_french_author2")], as.factor)
Pour cette cinquième partie nous regroupons les 8 années dans une même base, qui contient ainsi 52 variables et 52 observations, c’est-à-dire articles.
Sur cette base au niveau des articles, les sources des APC sont les suivantes :
# On affiche les sources des APC
table <- whole_bso %>% group_by(apc_source) %>% summarise(frequence = n()) %>% mutate(pourcentage = paste(round(frequence/sum(frequence)*100,2), "%"))
kable(table, format = "html") %>%
kable_styling(bootstrap_options = c("striped", "hover"),
full_width = F,
html_font = "sans-serif")
| apc_source | frequence | pourcentage |
|---|---|---|
| doaj | 55606 | 5.39 % |
| openAPC | 16439 | 1.59 % |
| openAPC_estimation_issn | 92744 | 8.98 % |
| openAPC_estimation_issn_year | 87981 | 8.52 % |
| openAPC_estimation_publisher | 543 | 0.05 % |
| openAPC_estimation_publisher_year | 75103 | 7.27 % |
| NA | 704101 | 68.19 % |
Les sources des APC seulement pour les articles de journaux “gold” ou “hybrid”, sont les suivantes (articles filtrés à partir de la variable ‘journal_color’ créées à partir des données du BSO) :
# On affiche les sources des APC
table <- whole_bso %>% filter(journal_color == "gold" | journal_color == "hybrid") %>% group_by(apc_source) %>% summarise(frequence = n()) %>% mutate(pourcentage = paste(round(frequence/sum(frequence)*100,2), "%"))
kable(table, format = "html") %>%
kable_styling(bootstrap_options = c("striped", "hover"),
full_width = F,
html_font = "sans-serif")
| apc_source | frequence | pourcentage |
|---|---|---|
| doaj | 5697 | 1.03 % |
| openAPC | 16439 | 2.96 % |
| openAPC_estimation_issn | 92744 | 16.7 % |
| openAPC_estimation_issn_year | 87981 | 15.84 % |
| openAPC_estimation_publisher | 543 | 0.1 % |
| openAPC_estimation_publisher_year | 75103 | 13.52 % |
| NA | 276998 | 49.86 % |
Idem mais le filtre a été appliqué sur la variable de meilleure qualité ‘oa_color_article_BSO’ qui correspond à ‘oa_details.2020.oa_colors_with_priority_to_publisher’ agregée.
# On affiche les sources des APC
table <- whole_bso %>% filter(oa_details.2020.oa_colors_with_priority_to_publisher == "gold" | oa_details.2020.oa_colors_with_priority_to_publisher == "hybrid") %>% group_by(apc_source) %>% summarise(frequence = n()) %>% mutate(pourcentage = paste(round(frequence/sum(frequence)*100,2), "%"))
kable(table, format = "html") %>%
kable_styling(bootstrap_options = c("striped", "hover"),
full_width = F,
html_font = "sans-serif")
| apc_source | frequence | pourcentage |
|---|---|---|
| doaj | 5342 | 2.27 % |
| openAPC | 15496 | 6.57 % |
| openAPC_estimation_issn | 75840 | 32.18 % |
| openAPC_estimation_issn_year | 80570 | 34.18 % |
| openAPC_estimation_publisher | 522 | 0.22 % |
| openAPC_estimation_publisher_year | 57936 | 24.58 % |
Sur cette base au niveau des articles, le nombre de valeurs manquantes pour la variable ‘amount_apc_EUR’ est le suivant - distingué par année :
# On affiche le nombre de NA
table <- whole_bso %>% filter(is.na(amount_apc_EUR)) %>% group_by(year) %>% summarise(frequence = n()) %>% mutate(pourcentage = paste(round(frequence/sum(frequence)*100,2), "%"))
kable(table, format = "html") %>%
kable_styling(bootstrap_options = c("striped", "hover"),
full_width = F,
html_font = "sans-serif")
| year | frequence | pourcentage |
|---|---|---|
| 2013 | 89729 | 12.74 % |
| 2014 | 88336 | 12.54 % |
| 2015 | 86438 | 12.28 % |
| 2016 | 90320 | 12.83 % |
| 2017 | 90478 | 12.85 % |
| 2018 | 93636 | 13.3 % |
| 2019 | 84521 | 12 % |
| 2020 | 80713 | 11.46 % |
Cette section croise la variable ‘has_apc’ avec les variables catégorielles de la base de données, dans le but de trouver des patterns pour comprendre de quoi dépend le fait que des APC aient été payés ou non.
# function
cross_has_apc <- function(group) {
# Table de fréquences
table <- whole_bso %>% group_by(has_apc) %>% count(get(group)) %>% mutate(percent = round(n/sum(n)*100,2)) %>% rename(variable = `get(group)`)
table[,c(1,2)] <- sapply(table[,c(1,2)], as.character)
table <- table %>% na.omit()
# Graphique
graph <- table %>% ggplot(aes(fill = factor(has_apc, levels = c("1","0")), y = n, x = variable,
text = paste("has_apc:", has_apc,
"\n", group, ":", variable,
"\nNombre d'articles:", n,
"\nPourcentage:", percent, "%"))) +
geom_bar(position="stack", stat="identity") +
scale_fill_viridis(discrete = T, name = "has_apc", option = "E", direction = -1) +
theme_ipsum() + coord_flip() +
xlab(group) + ylab("Nombre d'articles") + ggtitle(paste("APC payés (has_apc) selon\n", group, sep = " ")) +
theme(axis.title.y = element_text(size=12),
axis.title.x = element_text(size=12))
ggplotly(graph, tooltip = c("text"))
}
cross_has_apc("is_covered_by_couperin")
cross_has_apc("year")
cross_has_apc("tier")
cross_has_apc("bso_classification")
cross_has_apc("journal_color")
cross_has_apc("oa_details.2020.is_oa")
cross_has_apc("oa_details.2020.journal_is_in_doaj")
cross_has_apc("oa_details.2020.journal_is_oa")
cross_has_apc("oa_details.2020.oa_host_type")
cross_has_apc("oa_details.2020.oa_colors")
cross_has_apc("oa_details.2020.oa_colors_with_priority_to_publisher")
cross_has_apc("oa_details.2020.licence_publisher")
Cette section croise la variable ‘amount_apc_EUR’ avec les variables catégorielles de la base de données, dans le but de trouver la variable la plus discriminante, c’est-à-dire où les distributions d’une catégorie à une autre sont les plus hétérogènes possible.
# function
cross_amount_apc <- function(group) {
# Graphique
graph <- whole_bso %>% filter(!is.na(amount_apc_EUR)) %>% ggplot(aes(x = amount_apc_EUR)) +
geom_histogram(bins = 30L, fill = "#112446") +
labs(x = group, y = "Nombre d'articles", title = paste("Montant des APC (amount_apc_EUR) selon\n", group, sep = " ")) +
theme_ipsum() +
facet_wrap(vars(get(group)), scales='fixed') +
theme(axis.title.y = element_text(size=12), axis.title.x = element_text(size=12))
ggplotly(graph)
}
cross_amount_apc("is_covered_by_couperin")
cross_amount_apc("year")
cross_amount_apc("tier")
cross_amount_apc("bso_classification")
cross_amount_apc("journal_color")
cross_amount_apc("oa_details.2020.is_oa")
cross_amount_apc("oa_details.2020.journal_is_in_doaj")
cross_amount_apc("oa_details.2020.journal_is_oa")
cross_amount_apc("oa_details.2020.oa_host_type")
cross_amount_apc("oa_details.2020.oa_colors")
cross_amount_apc("oa_details.2020.oa_colors_with_priority_to_publisher")
cross_amount_apc("oa_details.2020.licence_publisher")
Sur les 1032517 articles des 8 années, 467600 articles ont au moins une affiliation manquante (is_complete_affiliation == 0) - soit 45.29%.
Théoriquement tous les articles de la base sont écrits au moins par un auteur français. Pour vérifier cette hypothèse nous regardons les fréquences de la variable ‘is_at_least_one_french_author’. Sur les 1032517 articles des 8 années confondues, il y a :
Sur les 1032517 articles des 8 années, il y a 268750 articles avec un auteur correspondant français sur 599748 articles écrit par au moins 1 auteur français. Le ratio est donc de 0.45.
# Graphique
graph <- whole_bso %>% filter(!is.na(nb_authors)) %>% ggplot(aes(x = nb_authors)) +
geom_histogram(bins = 70L, fill = "#112446") +
labs(x = "Nombre d'auteurs", y = "Nombre d'articles", title = "Distribution du nombre d'auteurs, selon la discipline
de l'article") +
theme_ipsum() +
facet_wrap(vars(bso_classification), scales='fixed') +
theme(axis.title.y = element_text(size=12),
axis.title.x = element_text(size=12))
ggplotly(graph)
Même distribution filtrée sur les articles ayant moins de 30 auteurs :
# Graphique
graph <- whole_bso %>% filter(!is.na(nb_authors),
nb_authors < 30,
bso_classification != "unkonw") %>% ggplot(aes(x = nb_authors)) +
geom_histogram(bins = 40L, fill = "#112446") +
labs(x = "Nombre d'auteurs", y = "Nombre d'articles",
title = "Distribution du nombre d'auteurs, selon la discipline
de l'article") +
theme_ipsum() +
facet_wrap(vars(bso_classification), scales='fixed') +
theme(axis.title.y = element_text(size=12),
axis.title.x = element_text(size=12))
ggplotly(graph)
global_stats(whole_bso)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences 11. unknown |
156787 (15.2%) 54764 ( 5.3%) 40082 ( 3.9%) 80909 ( 7.8%) 27591 ( 2.7%) 85667 ( 8.3%) 25835 ( 2.5%) 371028 (35.9%) 123273 (11.9%) 66564 ( 6.4%) 17 ( 0.0%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors have declared 2. The authors declare no co 3. Competing interests: None 4. Declaration of Competing 5. Declaration of competing 6. Competing interestsThe au 7. The authors declare no co 8. The authors declare no co 9. None declared. 10. Declaration of Interests [ 7274 others ] |
2695 (12.0%) 2082 ( 9.3%) 1435 ( 6.4%) 611 ( 2.7%) 499 ( 2.2%) 428 ( 1.9%) 374 ( 1.7%) 337 ( 1.5%) 263 ( 1.2%) 239 ( 1.1%) 13442 (60.0%) |
1010112 (97.8%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(““us”“,”“fr”“) 3. c(”“fr”“,”“us”“) 4. c(”“de”“,”“fr”“) 5. c(”“it”“,”“fr”“) 6. c(”“fr”“,”“it”“) 7. c(”“fr”“,”“gb”“) 8. c(”“fr”“,”“cn”“) 9. c(”“gb”“,”“fr”“) 10. c(”“ca”“,”“fr”“) [ 68152 others ] |
277883 (50.8%) 11370 ( 2.1%) 6748 ( 1.2%) 5715 ( 1.0%) 5238 ( 1.0%) 4840 ( 0.9%) 4826 ( 0.9%) 4630 ( 0.8%) 4225 ( 0.8%) 4210 ( 0.8%) 217810 (39.8%) |
485022 (47.0%) |
|
| 4 | lang [character] |
1. en 2. fr 3. es 4. de 5. pt 6. it 7. ja 8. ru 9. pl 10. nl [ 65 others ] |
809671 (78.5%) 205607 (19.9%) 6101 ( 0.6%) 2532 ( 0.2%) 2466 ( 0.2%) 2270 ( 0.2%) 1028 ( 0.1%) 395 ( 0.0%) 308 ( 0.0%) 219 ( 0.0%) 1406 ( 0.1%) |
514 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Éditorial 3. Editorial 4. Présentation 5. Avant-propos 6. Comptes rendus 7. Preface 8. Lu pour vous 9. Reply 10. Foreword [ 1015366 others ] |
1452 ( 0.1%) 869 ( 0.1%) 526 ( 0.1%) 452 ( 0.0%) 323 ( 0.0%) 279 ( 0.0%) 274 ( 0.0%) 263 ( 0.0%) 250 ( 0.0%) 170 ( 0.0%) 1027610 (99.5%) |
49 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
686035 (71.1%) 278507 (28.9%) |
67975 (6.6%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1776.7 (1075.6) min < med < max: 0 < 1873.6 < 13975 IQR (CV) : 1286.3 (0.6) |
14647 distinct values | 704171 (68.2%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
55606 (16.9%) 16439 ( 5.0%) 92744 (28.2%) 87981 (26.8%) 543 ( 0.2%) 75103 (22.9%) |
704101 (68.2%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 1384.1 (1147.7) min < med < max: 0 < 1587.1 < 6923.2 IQR (CV) : 2138.9 (0.8) |
36987 distinct values | 866933 (84.0%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 4934.4 (550147.4) min < med < max: 0 < 1749 < 1e+08 IQR (CV) : 2300 (111.5) |
374 distinct values | 866863 (84.0%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2099.4 (823.5) min < med < max: 2.3 < 2042 < 13975 IQR (CV) : 1077.4 (0.4) |
13114 distinct values | 751649 (72.8%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 672.3 (1141.8) min < med < max: 10 < 59 < 5703 IQR (CV) : 717 (1.7) |
348 distinct values | 768131 (74.4%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. Springer 9. American Chemical Society 10. EDP Sciences [ 4151 others ] |
306324 (29.7%) 85334 ( 8.3%) 73332 ( 7.1%) 59023 ( 5.7%) 55970 ( 5.4%) 29402 ( 2.8%) 28011 ( 2.7%) 21749 ( 2.1%) 19298 ( 1.9%) 17735 ( 1.7%) 336339 (32.6%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Springer-Nature 3. Wiley 4. OpenEdition 5. CAIRN 6. Informa 7. Oxford University Press 8. Springer 9. American Chemical Society 10. EDP Sciences [ 4150 others ] |
306324 (29.7%) 85334 ( 8.3%) 78550 ( 7.6%) 59023 ( 5.7%) 55970 ( 5.4%) 29402 ( 2.8%) 28011 ( 2.7%) 21749 ( 2.1%) 19298 ( 1.9%) 17735 ( 1.7%) 331121 (32.1%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. ebg 3. hal-02431782 4. hal-03321491 5. halshs-01523288 6. hal-01483543 7. hal-01503066 8. hal-01668854 9. hal-02995661 10. hal-03037161 [ 174310 others ] |
524 ( 0.3%) 12 ( 0.0%) 7 ( 0.0%) 7 ( 0.0%) 7 ( 0.0%) 6 ( 0.0%) 5 ( 0.0%) 5 ( 0.0%) 5 ( 0.0%) 5 ( 0.0%) 175876 (99.7%) |
856058 (82.9%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
433435 (42.0%) 599082 (58.0%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [numeric] |
Min : 0.2 Mean : 0.7 Max : 1 |
2 distinct values | 1031415 (99.9%) |
|
| 18 | part_APC_paid_by_authors [numeric] |
Min : 0 Mean : 0.3 Max : 0.8 |
2 distinct values | 1031415 (99.9%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
306324 (29.7%) 181533 (17.6%) 333483 (32.3%) 211177 (20.5%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
49909 ( 5.0%) 115745 (11.6%) 439760 (44.2%) 389004 (39.1%) |
38099 (3.7%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
51285 (28.7%) 127306 (71.3%) |
853926 (82.7%) |
|
| 22 | corresponding [logical] |
1. TRUE | 116024 (100.0%) | 916493 (88.8%) |
|
| 23 | nb_authors [numeric] |
Mean (sd) : 11.4 (105.2) min < med < max: 1 < 5 < 5156 IQR (CV) : 6 (9.2) |
1223 distinct values | 2367 (0.2%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 2. 1 |
467600 (45.4%) 562550 (54.6%) |
2367 (0.2%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 4.5 (67.9) min < med < max: 0 < 0 < 3664 IQR (CV) : 3 (15.2) |
974 distinct values | 2367 (0.2%) |
|
| 26 | is_french_CA [character] |
1. 0 2. 1 |
297265 (52.5%) 268750 (47.5%) |
466502 (45.2%) |
|
| 27 | is_at_least_one_french_author2 [character] |
1. 0 2. 1 |
24800 ( 4.0%) 599748 (96.0%) |
407969 (39.5%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
486948 (48.9%) 508260 (51.1%) |
37309 (3.6%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
848201 (85.2%) 147007 (14.8%) |
37309 (3.6%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
821591 (82.6%) 173617 (17.4%) |
37309 (3.6%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
486948 (48.9%) 144629 (14.5%) 210370 (21.1%) 153261 (15.4%) |
37309 (3.6%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(““green”“,”“diamond”“) 2. c(”“green”“,”“gold”“) 3. c(”“green”“,”“hybrid”“) 4. c(”“green”“,”“other”“) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
20642 ( 2.1%) 100610 (10.1%) 62429 ( 6.3%) 26689 ( 2.7%) 486948 (48.9%) 22541 ( 2.3%) 16404 ( 1.6%) 153261 (15.4%) 56263 ( 5.7%) 49421 ( 5.0%) |
37309 (3.6%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
486948 (48.9%) 43183 ( 4.3%) 117014 (11.8%) 153261 (15.4%) 118692 (11.9%) 76110 ( 7.6%) |
37309 (3.6%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(““cc-by-nc-nd”“,”“cc-b 2. c(”“cc-by-nc”“,”“cc-by-n 3. c(”“cc-by-nc”“,”“cc-by-s 4. cc-by 5. cc-by-nc 6. cc-by-nc-nd 7. cc-by-nc-sa 8. cc-by-nd 9. cc-by-sa 10. no license 11. other |
88 ( 0.0%) 12 ( 0.0%) 7 ( 0.0%) 135155 (38.1%) 19912 ( 5.6%) 46500 (13.1%) 4295 ( 1.2%) 619 ( 0.2%) 1150 ( 0.3%) 140455 (39.6%) 6806 ( 1.9%) |
677518 (65.6%) |
|
| 35 | is_french_CA_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 223608 (36.5%) 1 : 388210 (63.5%) |
420699 (40.7%) |
|
| 36 | is_non_french_CA_wos [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 338207 (55.3%) 1 : 273611 (44.7%) |
420699 (40.7%) |
|
| 37 | is_french_CA_openalex [numeric] |
Min : 0 Mean : 0.4 Max : 1 |
0 : 27776 (55.9%) 1 : 21956 (44.1%) |
982785 (95.2%) |
|
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
43183 ( 4.3%) 117014 (11.8%) 118692 (11.9%) 716319 (72.0%) |
37309 (3.6%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
102337 (37.7%) 1761 ( 0.6%) 123755 (45.6%) 1427 ( 0.5%) 42020 (15.5%) |
761217 (73.7%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 105525 (38.9%) 1 : 165775 (61.1%) |
761217 (73.7%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
8414 ( 1.0%) 221283 (26.2%) 615621 (72.8%) |
187199 (18.1%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
Min : 0 Mean : 0.6 Max : 1 |
0 : 296747 (38.3%) 1 : 477479 (61.7%) |
258291 (25.0%) |
|
| 43 | is_french_CA_bso_wos_lang [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 296747 (33.2%) 1 : 598093 (66.8%) |
137677 (13.3%) |
|
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
Min : 0 Mean : 0.7 Max : 1 |
0 : 324523 (34.4%) 1 : 620049 (65.6%) |
87945 (8.5%) |
# Filtre sur les Y is_french_CA manquants
sample <- data %>% filter(is.na(is_french_CA_wos) & is.na(is_french_CA) & is.na(is_french_CA_openalex) & lang != "fr")
table_na(sample)
global_stats(sample)
| No | Variable | Stats / Values | Freqs (% of Valid) | Graph | Missing |
|---|---|---|---|---|---|
| 1 | bso_classification [character] |
1. Biology (fond.) 2. Chemistry 3. Computer and informatio 4. Earth, Ecology, Energy a 5. Engineering 6. Humanities 7. Mathematics 8. Medical research 9. Physical sciences, Astron 10. Social sciences |
986 (13.6%) 76 ( 1.0%) 347 ( 4.8%) 500 ( 6.9%) 277 ( 3.8%) 965 (13.3%) 278 ( 3.8%) 2640 (36.4%) 492 ( 6.8%) 700 ( 9.6%) |
0 (0.0%) |
|
| 2 | coi [character] |
1. The authors report no con 2. Competing interests: None 3. Conflicts of interest and 4. Disclosure The authors re 5. Disclosure: The authors h 6. No competing interests we 7. Bruno Aouizerate reports 8. Charles Hugo Marquette an 9. Competing Interests: The 10. Competing interestsEB rep [ 12 others ] |
5 (14.7%) 4 (11.8%) 3 ( 8.8%) 2 ( 5.9%) 2 ( 5.9%) 2 ( 5.9%) 1 ( 2.9%) 1 ( 2.9%) 1 ( 2.9%) 1 ( 2.9%) 12 (35.3%) |
7227 (99.5%) |
|
| 3 | detected_countries [character] |
1. fr 2. c(“gb”, “fr”) 3. c(“it”, “fr”) 4. c(“fr”, “us”) 5. c(“fr”, “dz”) 6. c(“us”, “fr”) 7. c(“fr”, “gb”) 8. c(“fr”, “it”) 9. c(“ca”, “fr”) 10. c(“ch”, “fr”) [ 406 others ] |
417 (42.8%) 16 ( 1.6%) 13 ( 1.3%) 11 ( 1.1%) 10 ( 1.0%) 10 ( 1.0%) 9 ( 0.9%) 7 ( 0.7%) 6 ( 0.6%) 6 ( 0.6%) 469 (48.2%) |
6287 (86.6%) |
|
| 4 | lang [character] |
1. en 2. es 3. de 4. pt 5. it 6. tr 7. nl 8. pl 9. ja 10. hu [ 27 others ] |
6514 (89.7%) 221 ( 3.0%) 110 ( 1.5%) 101 ( 1.4%) 72 ( 1.0%) 45 ( 0.6%) 24 ( 0.3%) 23 ( 0.3%) 22 ( 0.3%) 21 ( 0.3%) 108 ( 1.5%) |
0 (0.0%) |
|
| 5 | title [character] |
1. Introduction 2. Editorial 3. Abstracts 4. Guest editorial 5. In This Issue 6. The authors reply 7. Spotlights on Recent JACS 8. Abstract 9. Editor’s note 10. Lu, vu, entendu [ 7069 others ] |
58 ( 0.8%) 17 ( 0.2%) 10 ( 0.1%) 10 ( 0.1%) 9 ( 0.1%) 9 ( 0.1%) 6 ( 0.1%) 5 ( 0.1%) 5 ( 0.1%) 5 ( 0.1%) 7127 (98.2%) |
0 (0.0%) |
|
| 6 | has_apc [character] |
1. 0 2. 1 |
3808 (73.0%) 1408 (27.0%) |
2045 (28.2%) |
|
| 7 | amount_apc_EUR [numeric] |
Mean (sd) : 1298.6 (1293.7) min < med < max: 0 < 1326.3 < 5205.8 IQR (CV) : 2295.9 (1) |
326 distinct values | 5011 (69.0%) |
|
| 8 | apc_source [character] |
1. doaj 2. openAPC 3. openAPC_estimation_issn 4. openAPC_estimation_issn_y 5. openAPC_estimation_publis 6. openAPC_estimation_publis |
1037 (46.0%) 40 ( 1.8%) 495 (22.0%) 136 ( 6.0%) 1 ( 0.0%) 543 (24.1%) |
5009 (69.0%) |
|
| 9 | amount_apc_doaj_EUR [numeric] |
Mean (sd) : 401 (806) min < med < max: 0 < 0 < 4572.1 IQR (CV) : 424.3 (2) |
251 distinct values | 6012 (82.8%) |
|
| 10 | amount_apc_doaj [numeric] |
Mean (sd) : 3084.9 (33479.4) min < med < max: 0 < 0 < 5e+05 IQR (CV) : 500 (10.9) |
88 distinct values | 6010 (82.8%) |
|
| 11 | amount_apc_openapc_EUR [numeric] |
Mean (sd) : 2295.1 (885.1) min < med < max: 115.2 < 2123.2 < 5205.8 IQR (CV) : 751.8 (0.4) |
233 distinct values | 5984 (82.4%) |
|
| 12 | count_apc_openapc_key [numeric] |
Mean (sd) : 555 (933.5) min < med < max: 10 < 117 < 5703 IQR (CV) : 492 (1.7) |
86 distinct values | 6024 (83.0%) |
|
| 13 | publisher_group [character] |
1. Elsevier 2. Wolters Kluwer Health 3. OpenEdition 4. Emerald Group 5. Bentham Science Publisher 6. Cambridge University Pres 7. Scientific Research Publi 8. Springer-Nature 9. American Physical Society 10. Wiley [ 923 others ] |
792 (10.9%) 659 ( 9.1%) 595 ( 8.2%) 417 ( 5.7%) 245 ( 3.4%) 238 ( 3.3%) 217 ( 3.0%) 167 ( 2.3%) 135 ( 1.9%) 127 ( 1.7%) 3669 (50.5%) |
0 (0.0%) |
|
| 14 | publisher_dissemination [character] |
1. Elsevier 2. Wolters Kluwer Health 3. OpenEdition 4. Emerald Group 5. Bentham Science Publisher 6. Cambridge University Pres 7. Scientific Research Publi 8. Springer-Nature 9. American Physical Society 10. Wiley [ 922 others ] |
792 (10.9%) 659 ( 9.1%) 595 ( 8.2%) 417 ( 5.7%) 245 ( 3.4%) 238 ( 3.3%) 217 ( 3.0%) 167 ( 2.3%) 135 ( 1.9%) 134 ( 1.8%) 3662 (50.4%) |
0 (0.0%) |
|
| 15 | hal_id [character] |
1. hal 2. hal-02306821 3. hal-03018396 4. 123456789/18494 5. 20.500.12210/19208 6. 20.500.12210/33714 7. 20.500.12210/41212 8. 20.500.12210/44025 9. 20.500.12210/56951 10. artxibo-02987810 [ 777 others ] |
4 ( 0.5%) 2 ( 0.3%) 2 ( 0.3%) 1 ( 0.1%) 1 ( 0.1%) 1 ( 0.1%) 1 ( 0.1%) 1 ( 0.1%) 1 ( 0.1%) 1 ( 0.1%) 777 (98.1%) |
6469 (89.1%) |
|
| 16 | is_covered_by_couperin [character] |
1. 0 2. 1 |
5434 (74.8%) 1827 (25.2%) |
0 (0.0%) |
|
| 17 | part_APC_paid_by_couperin [character] |
1. 0.25 | 2 (100.0%) | 7259 (100.0%) |
|
| 18 | part_APC_paid_by_authors [character] |
1. 0.75 | 2 (100.0%) | 7259 (100.0%) |
|
| 19 | tier [character] |
1. 1 2. 2 3. 3 4. 4 |
792 (10.9%) 308 ( 4.2%) 2142 (29.5%) 4019 (55.4%) |
0 (0.0%) |
|
| 20 | journal_color [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
844 (14.6%) 407 ( 7.0%) 1940 (33.6%) 2588 (44.8%) |
1482 (20.4%) |
|
| 21 | journal_color_doaj [character] |
1. diamond 2. gold |
859 (67.1%) 422 (32.9%) |
5980 (82.4%) |
|
| 22 | corresponding [logical] |
All NA’s | 7261 (100.0%) |
||
| 23 | nb_authors [numeric] |
Mean (sd) : 12.7 (114.2) min < med < max: 1 < 4 < 2956 IQR (CV) : 5 (9) |
118 distinct values | 366 (5.0%) |
|
| 24 | is_complete_affiliation [character] |
1. 0 | 6895 (100.0%) | 366 (5.0%) |
|
| 25 | nb_missing_affiliation [numeric] |
Mean (sd) : 10.1 (98.9) min < med < max: 1 < 3 < 2956 IQR (CV) : 5 (9.8) |
106 distinct values | 366 (5.0%) |
|
| 26 | is_french_CA [character] |
All NA’s | 7261 (100.0%) |
||
| 27 | is_at_least_one_french_author2 [character] |
1. 1 | 1022 (100.0%) | 6239 (85.9%) |
|
| 28 | oa_details.2020.is_oa [logical] |
1. FALSE 2. TRUE |
2031 (37.7%) 3357 (62.3%) |
1873 (25.8%) |
|
| 29 | oa_details.2020.journal_is_in_doaj [logical] |
1. FALSE 2. TRUE |
4577 (84.9%) 811 (15.1%) |
1873 (25.8%) |
|
| 30 | oa_details.2020.journal_is_oa [logical] |
1. FALSE 2. TRUE |
3669 (68.1%) 1719 (31.9%) |
1873 (25.8%) |
|
| 31 | oa_details.2020.oa_host_type [character] |
1. closed 2. publisher 3. publisher;repository 4. repository |
2031 (37.7%) 2326 (43.2%) 640 (11.9%) 391 ( 7.3%) |
1873 (25.8%) |
|
| 32 | oa_details.2020.oa_colors [character] |
1. c(“green”, “diamond”) 2. c(“green”, “gold”) 3. c(“green”, “hybrid”) 4. c(“green”, “other”) 5. closed 6. diamond 7. gold 8. green 9. hybrid 10. other |
108 ( 2.0%) 152 ( 2.8%) 117 ( 2.2%) 263 ( 4.9%) 2031 (37.7%) 422 ( 7.8%) 231 ( 4.3%) 391 ( 7.3%) 320 ( 5.9%) 1353 (25.1%) |
1873 (25.8%) |
|
| 33 | oa_details.2020.oa_colors_with_priority_to_publisher [character] |
1. closed 2. diamond 3. gold 4. green_only 5. hybrid 6. other |
2031 (37.7%) 530 ( 9.8%) 383 ( 7.1%) 391 ( 7.3%) 437 ( 8.1%) 1616 (30.0%) |
1873 (25.8%) |
|
| 34 | oa_details.2020.licence_publisher [character] |
1. c(“cc-by-nc-nd”, “cc-by-n 2. cc-by 3. cc-by-nc 4. cc-by-nc-nd 5. cc-by-nc-sa 6. cc-by-nd 7. cc-by-sa 8. no license 9. other |
2 ( 0.1%) 1079 (36.4%) 189 ( 6.4%) 385 (13.0%) 53 ( 1.8%) 30 ( 1.0%) 74 ( 2.5%) 1144 (38.6%) 10 ( 0.3%) |
4295 (59.2%) |
|
| 35 | is_french_CA_wos [numeric] |
All NA’s | 7261 (100.0%) |
||
| 36 | is_non_french_CA_wos [numeric] |
All NA’s | 7261 (100.0%) |
||
| 37 | is_french_CA_openalex [numeric] |
All NA’s | 7261 (100.0%) |
||
| 38 | oa_color_article_BSO [character] |
1. diamond 2. gold 3. hybrid 4. subscription |
530 ( 9.8%) 383 ( 7.1%) 437 ( 8.1%) 4038 (74.9%) |
1873 (25.8%) |
|
| 39 | oa_color_openalex [character] |
1. bronze 2. closed 3. gold 4. green 5. hybrid |
538 (45.0%) 19 ( 1.6%) 472 (39.5%) 10 ( 0.8%) 156 (13.1%) |
6066 (83.5%) |
|
| 40 | apc_has_been_paid [numeric] |
Min : 0 Mean : 0.5 Max : 1 |
0 : 567 (47.4%) 1 : 628 (52.6%) |
6066 (83.5%) |
|
| 41 | journal_color_qoam [character] |
1. diamond 2. gold 3. hybrid |
276 ( 5.7%) 2017 (41.4%) 2575 (52.9%) |
2393 (33.0%) |
|
| 42 | is_french_CA_bso_wos [numeric] |
All NA’s | 7261 (100.0%) |
||
| 43 | is_french_CA_bso_wos_lang [numeric] |
All NA’s | 7261 (100.0%) |
||
| 44 | is_french_CA_bso_wos_lang_openalex [numeric] |
All NA’s | 7261 (100.0%) |
Document sous licence ouverte